/ Published in: PHP
You can use fluid for example in oldschool plugins without using extbase.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$this->extPath = t3lib_extMgm::extPath($this->extKey); $view = t3lib_div::makeInstance('Tx_Fluid_View_StandaloneView'); $view->setTemplatePathAndFilename($this->extPath . 'templates/test.html'); $view->assign('helloworld', 'Hello World...and so on...'); $content = $view->render();
URL: http://wiki.typo3.org/User:Layne_obserdia/Extbase