21.01.2013 16:40:00 • Categories: Typo3 • Tags: Typo3, Extbase
TYPO3: Extbase - alternatives Fluid Template in der Controller Action
Manchmal ist vielleicht nötig programmatisch in der Extbase Controller Action ein anderes FLUID Template zu laden.
/**
* action myaction
*
* @return void
*/
public function myactionAction() {
$this->view->setTemplatePathAndFilename('typo3conf/ext/mykey/Resources/Private/Templates/Base/Anothertemplate.html');
}</pre>