vendor/activepublishing/bundle-active-pdfreactor/ActivePdfReactorBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace ActivePdfReactorBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class ActivePdfReactorBundle extends AbstractPimcoreBundle
  5. {
  6.     const COMPOSER_PACKAGE_NAME  "activepublishing/bundle-active-pdfreactor";
  7.     const BUNDLE_ID              "ActivePdfReactorBundle";
  8.     const BUNDLE_NAME            "ActivePdfReactorBundle";
  9.     const BUNDLE_DESCRIPTION     "ActivePublishing's PdfReactor Bundle by Active Publishing©";
  10.     const BUNDLE_VERSION         "1.1.9";
  11.     const BUNDLE_REVISION        1;
  12.     const PIMCORE_MIN_VERSION    "10.0.0";
  13.     public function getJsPaths()
  14.     {
  15.         return [
  16.             '/bundles/activepdfreactor/js/pimcore/startup.js',
  17.             '/bundles/activepdfreactor/js/pimcore/configuration.js',
  18.             '/bundles/activepdfreactor/js/pimcore/common.js',
  19.             '/bundles/activepdfreactor/js/pimcore/pdf_preview.js'
  20.         ];
  21.     }
  22.     /**
  23.      * @return string
  24.      */
  25.     protected function getComposerPackageName(): string
  26.     {
  27.         return self::COMPOSER_PACKAGE_NAME;
  28.     }
  29.     /**
  30.      * @return string
  31.      */
  32.     public function getNiceName()
  33.     {
  34.         return self::BUNDLE_NAME;
  35.     }
  36.     /**
  37.      * @return string
  38.      */
  39.     public function getDescription()
  40.     {
  41.         return self::BUNDLE_DESCRIPTION;
  42.     }
  43.     /**
  44.      * @return string
  45.      */
  46.     public function getVersion()
  47.     {
  48.         return self::BUNDLE_VERSION;
  49.     }
  50. }