vendor/nambu-private/pimcore-form/src/FormBundle/Event/HeadmetaAdminframeAppendEvent.php line 7

Open in your IDE?
  1. <?php
  2. namespace FormBundle\Event;
  3. use Symfony\Component\EventDispatcher\GenericEvent;
  4. class HeadmetaAdminframeAppendEvent {
  5.     public function onAppend(GenericEvent $e) {
  6.         $view $e->getSubject();
  7.         if ($view instanceof \Pimcore\Templating\TimedPhpEngine) {
  8. //            $view->headScript()->appendFile('/static/node_modules/chart.js/dist/Chart.min.js');
  9.         }
  10.     }
  11. }