Hallo Forum,
ich versuche ein relativ simples Plugin zu coden, scheitere aber schon am custom Backend Controller. Bzw scheint SW meinen Controller nicht wie in der Doku beschrieben automatisch zu erkennen und zu laden… deswegen auch immer der 404 Not Found, wenn SW versucht, das in der config.xml definierte Custom Select mit Daten zu füllen.
Ich peile es nicht, warum mein Controller nicht erkannt wird… Any idea?
Ich bitte um Hinweise, das wäre grossartig.
Besten Dank, Yo
Ach, so, alle Caches sowie var/cache/production_*** etc habe ich natürlich gelöscht
Folgend meine Plugin Struktur:
custom/plugins/MyTest/plugin.xml
custom/plugins/MyTest/MyTest.php
custom/plugins/MyTest/Resources/config.xml
custom/plugins/MyTest/Controllers/Backend/MyTest.php
Inhalt plugin.xml
MyTest
1.0.0
(c) by Me
Initial
Inhalt MyTest.php
Inhalt Resources/config.xml
test
Test Select
true
Inhalt Controllers/Backend/MyTest.php
1, 'name' => 'foo'],
['id' => 2, 'name' => 'bar'],
];
$this->view->assign([
'data' => $data,
'total' => count($data),
]);
}
}