bundles/IndabaIbexportBundle/IndabaIbexportBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace IndabaIbexportBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class IndabaIbexportBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getJsPaths()
  7.     {
  8.         return [
  9.             '/bundles/indabaibexport/js/pimcore/config.js',
  10.             '/bundles/indabaibexport/js/pimcore/indabaibexport.js',
  11.             '/bundles/indabaibexport/js/indabaibexport/ImageInfoTab.js',
  12.             '/bundles/indabaibexport/js/indabaibexport/dialog/configdialog.js'
  13.         ];
  14.     }
  15.     
  16.     public function getInstaller()
  17.     {
  18.         return $this->container->get(Installer::class);
  19.     }
  20. }