TYPO3 CMS  TYPO3_6-2
LoadRegisterContentObject.php
Go to the documentation of this file.
1 <?php
3 
23 
31  public function render($conf = array()) {
32  array_push($GLOBALS['TSFE']->registerStack, $GLOBALS['TSFE']->register);
33  if (is_array($conf)) {
34  $isExecuted = array();
35  foreach ($conf as $theKey => $theValue) {
36  $register = rtrim($theKey, '.');
37  if (!$isExecuted[$register]) {
38  $registerProperties = $register . '.';
39  if (isset($conf[$register]) && isset($conf[$registerProperties])) {
40  $theValue = $this->cObj->stdWrap($conf[$register], $conf[$registerProperties]);
41  } elseif (isset($conf[$registerProperties])) {
42  $theValue = $this->cObj->stdWrap('', $conf[$registerProperties]);
43  }
44  $GLOBALS['TSFE']->register[$register] = $theValue;
45  $isExecuted[$register] = TRUE;
46  }
47  }
48  }
49  return '';
50  }
51 
52 }
if(!defined('TYPO3_MODE')) $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_pre_processing'][]