src/Develey/JTLImportBundle/DeveleyJTLImportBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Develey\JTLImportBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class DeveleyJTLImportBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getJsPaths()
  7.     {
  8.         return [
  9.             '/bundles/develeyjtlimport/js/pimcore/startup.js'
  10.         ];
  11.     }
  12.     public function getCssPaths()
  13.     {
  14.         return [
  15.             '/bundles/develeyjtlimport/css/bundle.css'
  16.         ];
  17.     }
  18. }