vendor/elements/qr-code-bundle/src/QrCodeBundle.php line 13

Open in your IDE?
  1. <?php
  2. /**
  3.  *
  4.  * Date: 21.10.2021
  5.  * Time: 10:35
  6.  *
  7.  */
  8. namespace Elements\Bundle\QrCode;
  9. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  10. use Elements\Bundle\QrCode\Installer;
  11. class QrCodeBundle extends AbstractPimcoreBundle
  12. {
  13.     public function getJsPaths()
  14.     {
  15.         return [
  16.         ];
  17.     }
  18.     public function getEditmodeJsPaths()
  19.     {
  20.         return [
  21.         ];
  22.     }
  23.     public function getCssPaths(){
  24.         return [
  25.         ];
  26.     }
  27.     public function getEditmodeCssPaths()
  28.     {
  29.         return [
  30.         ];
  31.     }
  32.     public function getInstaller()
  33.     {
  34.         return $this->container->getInstaller\Installer::class );
  35.     }
  36.     public function getVersion()
  37.     {
  38.         $version \PackageVersions\Versions::getVersion('elements/qr-code-bundle');
  39.         return $version;
  40.     }
  41.     public function getDescription()
  42.     {
  43.         return 'QrCode Bundle';
  44.     }
  45. }