vendor/activepublishing/bundle-indesign-export/IndesignExportBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace IndesignExportBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class IndesignExportBundle extends AbstractPimcoreBundle
  5. {
  6.     const COMPOSER_PACKAGE_NAME  "activepublishing/bundle-indesign-export";
  7.     const BUNDLE_NAME            "IndesignExport";
  8.     const BUNDLE_ID              "IndesignExportBundle";
  9.     const BUNDLE_DESCRIPTION     "Indesign export by Active Publishing©";
  10.     const BUNDLE_VERSION         "1.0.9";
  11.     const PIMCORE_MIN_VERSION    "10.0.0";
  12.     /**
  13.      * @return array
  14.      */
  15.     public function getJsPaths() : array {
  16.         return [
  17.             '/bundles/indesignexport/js/pimcore/startup.js',
  18.             '/bundles/indesignexport/js/pimcore/context/Context.js',
  19.             '/bundles/indesignexport/js/pimcore/form/FormHandler.js',
  20.             '/bundles/indesignexport/js/pimcore/form/FormContentGenerator.js',
  21.         ];
  22.     }
  23.     /**
  24.      * @return string
  25.      */
  26.     protected function getComposerPackageName() : string {
  27.         return self::COMPOSER_PACKAGE_NAME;
  28.     }
  29.     /**
  30.      * @return string
  31.      */
  32.     public function getNiceName() : string {
  33.         return self::BUNDLE_NAME;
  34.     }
  35.     /**
  36.      * @return string
  37.      */
  38.     public function getDescription() : string {
  39.         return self::BUNDLE_DESCRIPTION;
  40.     }
  41.     /**
  42.      * @return string
  43.      */
  44.     public function getVersion() : string {
  45.         return self::BUNDLE_VERSION;
  46.     }
  47. //    /**
  48. //     * {@inheritdoc}
  49. //     */
  50. //    public function getInstaller() : InstallerService {
  51. //        return $this->container->get(InstallerService::class);
  52. //    }
  53. }