<?phpnamespace App\EventListener;use Pimcore\Event\BundleManager\PathsEvent;class ImportMovieListener{ public function addCSSFiles(PathsEvent $event) { $event->setPaths( array_merge( $event->getPaths(), [ '/static/css/admin-style.css' ] ) ); } public function addJSFiles(PathsEvent $event) { $event->setPaths( array_merge( $event->getPaths(), [ '/static/js/ImportButton.js' ] ) ); }}