如果我有一个流插件TYPO3.NeosDemoTypo3Org:MyQuotesPlugin并且我想渲染方法的返回值" quoteOfTheDayAction'这是在我的ActionController中实现的,我该如何在我的页面模板中执行此操作?
使用Typo3,我会这样做:
page = PAGE
page.10 < plugin.tx_myqoutesplugin_pi1
我怎么能用neos和流体做到这一点?
感谢您的帮助!!
答案 0 :(得分:2)
在TypoScript中:
page.body.content.quoteOfTheDay = TYPO3.NeosDemoTypo3Org:MyQuotesPlugin {
action = 'quoteOfTheDay'
}
然后在你的身体模板中:
{content.quoteOfTheDay -> f:format.raw()}