2 namespace TYPO3\CMS\Frontend\ContentObject;
30 public function render($conf = array())
33 $this->
getTimeTracker()->setTSlogMessage(
'No elements in this content object array (COBJ_ARRAY, COA).', 2);
36 if (!empty($conf[
'if.']) && !$this->cObj->checkIf($conf[
'if.'])) {
40 $this->cObj->includeLibs($conf);
41 $content = $this->cObj->cObjGet($conf);
42 $wrap = isset($conf[
'wrap.']) ? $this->cObj->stdWrap($conf[
'wrap'], $conf[
'wrap.']) : $conf[
'wrap'];
44 $content = $this->cObj->wrap($content, $wrap);
46 if (isset($conf[
'stdWrap.'])) {
47 $content = $this->cObj->stdWrap($content, $conf[
'stdWrap.']);