src/EventListener/PimcoreAdminListener.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\EventListener;
  3. use Pimcore\Event\BundleManager\PathsEvent;
  4. class PimcoreAdminListener
  5. {
  6.     public function addCSSFiles(PathsEvent $event)
  7.     {
  8.         
  9.     }
  10.     public function addJSFiles(PathsEvent $event)
  11.     {
  12.         $event->setPaths(
  13.             array_merge(
  14.                 $event->getPaths(),
  15.                 [
  16.                     '/static/js/pimcore/data-importer/mapping/operator/caseConversion.js',
  17.                 ]
  18.             )
  19.         );
  20.     }
  21. }