本文介绍了如何在Typo3 6.1.5中使用PHP在我的扩展程序中从tt_content呈现内容对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要使用我的扩展名渲染tt_content中的特定内容.
I need to render with my extension a specific content from tt_content.
我该怎么做?
\ TYPO3 \ CMS \ Frontend \ ContentObject \ ContentObjectRenderer吗?
\TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer ?
推荐答案
在Extbase扩展中,$this->cObj
在当前作用域中不再可用,因此您需要先获得它才能使用:
In Extbase extensions $this->cObj
is no more available in the current scope, so you need to get it first before you can use:
$cObj = $this->configurationManager->getContentObject();
$ttContentConfig = array(
'tables' => 'tt_content',
'source' => 123,
'dontCheckPid' => 1
);
$content .= $cObj->RECORDS($ttContentConfig);
这篇关于如何在Typo3 6.1.5中使用PHP在我的扩展程序中从tt_content呈现内容对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!