src/Optiweb/FunctionsBundle/OptiwebFunctionsBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Optiweb\FunctionsBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class OptiwebFunctionsBundle extends AbstractPimcoreBundle
  5. {
  6.     /**
  7.      * @return array
  8.      */
  9.     public function getJsPaths()
  10.     {
  11.         return [
  12.             '/bundles/optiwebfunctions/js/pimcore/startup.js',
  13.             '/bundles/optiwebfunctions/js/pimcore/object/classes/data/attributeSet.js',
  14.             '/bundles/optiwebfunctions/js/pimcore/object/tags/attributeSet.js',
  15.             '/bundles/optiwebfunctions/js/pimcore/object/classes/data/attributeSetInputs.js',
  16.             '/bundles/optiwebfunctions/js/pimcore/object/tags/attributeSetInputs.js',
  17.             '/bundles/optiwebfunctions/js/pimcore/helpers/generic-grid.js'
  18.         ];
  19.     }
  20.     /**
  21.      * @return array
  22.      */
  23.     public function getCssPaths()
  24.     {
  25.         return [];
  26.     }
  27. }