Artikel Backend extensions

Hallo,

Ich möchte beim Anruf Artikel Detail Backend eine zuzätlische Feld hinzufügen.

event ist :  ‘Enlight_Controller_Action_PostDispatchSecure_Backend_Article’ => ‘onPostDispatchBackendArticle’,

und danach die function:

 

 /\*\* \* @param \Enlight\_Event\_EventArgs $args \*/ public function onPostDispatchBackendArticle(\Enlight\_Event\_EventArgs $args) { /\*\* @var \Enlight\_Controller\_Action $controller \*/ $controller = $args-\>getSubject(); $request = $controller-\>Request(); $view = $controller-\>View(); $view-\>addTemplateDir($this-\>pluginDirectory . '/Resources/Views/'); if ($request-\>getActionName() === 'load') { $view-\>extendsTemplate('backend/article/view/detail/window.js'); } }

Problem ist : $request->getActionName() ist nicht load und kommt nicht im if rein. 

Ich brauche aber die Load action. ist mein Event korrekt? hat jemand eine Idee.

 

Danke

Grüße.