Liebes Forum
Wie bindet man im neuen Pluginsystem in Shopware 5.2 Javascript ein ?
Less-Dateien bindet man ja z.B. so ein:
'onFrontendPostDispatchBlog',
'Theme_Compiler_Collect_Plugin_Less' => 'onCollectLessFiles'
];
}
public function onCollectLessFiles()
{
return new LessDefinition(
[],
[$this->getPath() . '/Resources/Views/frontend/_public/src/less/all.less']
);
}
public function onFrontendPostDispatchBlog(\Enlight_Controller_ActionEventArgs $args)
{
$this->container->get('template')->addTemplateDir( $this->getPath() . '/Resources/Views/' );
}
}
Ich habe mal etwas analoges versucht, nur leider ohne Erfolg
Wie macht man das ?
Liebe Grüße
Kerstin