Manchmal ist vielleicht nötig programmatisch in der Extbase Controller Action ein anderes FLUID Template zu laden.
1 2 3 4 5 6 7 8 9 |
/** * action myaction * * @return void */ public function myactionAction() { $this->view->setTemplatePathAndFilename('typo3conf/ext/mykey/Resources/Private/Templates/Base/Anothertemplate.html'); } |