I'm trying to use an extbase plugin through typoscript on TYPO3 CMS 6.0. I used the following code, that I found repeated all over the web:
10 = USER
10 {
userFunc = tx_extbase_core_bootstrap->run
pluginName = Sermons
extensionName = VmfdsSermons
switchableControllerActions {
Sermon {
1 = byLatestSeries
2 = list
3 = show
}
}
However, this just gives me the following error:
#1289386765: Could not analyse class:Tx_VmfdsSermons_Controller_SermonController maybe not loaded or no autoloader?
It seems to me as if tx_extbase_core_bootstrap->run
is not using namespaces yet, thus trying to load a class called Tx_VmfdsSermons_Controller_SermonController
when it should have called \TYPO3\VmfdsSermons\Controller\SermonController
. Is there a way around this?
vendorName = TYPO3
did, however. – Baca