vendor/gal-digital-gmbh/pimcore-qrcode-bundle/src/PimcoreQrcodeBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace GalDigitalGmbh\PimcoreQrcodeBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
  5. use Pimcore\Extension\Bundle\Traits\StateHelperTrait;
  6. class PimcoreQrcodeBundle extends AbstractPimcoreBundle
  7. {
  8.     use StateHelperTrait;
  9.     use PackageVersionTrait;
  10.     public function getNiceName()
  11.     {
  12.         return 'QR-Code Bundle';
  13.     }
  14.     public function getDescription()
  15.     {
  16.         return 'Adds a backend configuration view for QR-Codes.';
  17.     }
  18.     public function getJsPaths()
  19.     {
  20.         return [
  21.             '/bundles/pimcoreqrcode/admin/js/startup.js',
  22.             '/bundles/pimcoreqrcode/admin/js/panel.js',
  23.             '/bundles/pimcoreqrcode/admin/js/item.js',
  24.         ];
  25.     }
  26.     protected function getComposerPackageName(): string
  27.     {
  28.         return 'gal-digital-gmbh/pimcore-qrcode-bundle';
  29.     }
  30. }