bundles/Asn/CustomBackOfficeBundle/AsnCustomBackOfficeBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Asn\CustomBackOfficeBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class AsnCustomBackOfficeBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getJsPaths()
  7.     {
  8.         return [
  9.             '/bundles/asncustombackoffice/js/pimcore/startup.js',
  10.             '/bundles/asncustombackoffice/js/pimcore/menu-eclate.js',
  11.             '/bundles/asncustombackoffice/js/pimcore/edit-eclate.js'
  12.         ];
  13.     }
  14.     public function getCssPaths()
  15.     {
  16.         return [
  17.             '/bundles/asncustombackoffice/css/pimcore/custom-style.css',
  18.             '/bundles/asncustombackoffice/css/pimcore/custom-style-objet-eclate.css'
  19.         ];
  20.     }
  21. }