src/TranslationBundle/TranslationBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\TranslationBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class TranslationBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getJsPaths()
  7.     {
  8.         return [
  9.             '/bundles/translation/js/pimcore/startup.js'
  10.         ];
  11.     }
  12.     
  13.     /**
  14.      * Function used for bundle install and uninstall.
  15.      * @return Installer
  16.      */
  17.     public function getInstaller()
  18.     {
  19.         return new Installer();
  20.     }
  21. }