TYPO3 CMS  TYPO3_6-2
ContentObjectArrayContentObject.php
Go to the documentation of this file.
1 <?php
3 
23 
30  public function render($conf = array()) {
31  if (empty($conf)) {
32  $GLOBALS['TT']->setTSlogMessage('No elements in this content object array (COBJ_ARRAY, COA).', 2);
33  return '';
34  }
35  if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
36  return '';
37  }
38 
39  $this->cObj->includeLibs($conf);
40  $content = $this->cObj->cObjGet($conf);
41  $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
42  if ($wrap) {
43  $content = $this->cObj->wrap($content, $wrap);
44  }
45  if (isset($conf['stdWrap.'])) {
46  $content = $this->cObj->stdWrap($content, $conf['stdWrap.']);
47  }
48  return $content;
49  }
50 
51 }
if(!defined('TYPO3_MODE')) $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_pre_processing'][]