Project

General

Profile

Feature #23971 ยป tslib_content_LOAD_REGISTER.diff

Administrator Admin, 2010-11-06 21:33

View differences:

typo3/sysext/cms/tslib/content/class.tslib_content_loadregister.php (revision )
*/
public function render($conf = array()) {
array_push($GLOBALS['TSFE']->registerStack, $GLOBALS['TSFE']->register);
if (is_array($conf)) {
$isExecuted = array();
foreach ($conf as $theKey => $theValue) {
if (!strstr($theKey, '.') || !isset($conf[substr($theKey, 0, -1)])) {
// Only if 1) the property is set but not the value itself, 2) the value and/or any property
if (strstr($theKey, '.')) {
$theKey = substr($theKey, 0, -1);
$register = rtrim($theKey,'.');
if(!$isExecuted[$register]) {
$registerProperties = $theKey . '.';
if(isset($conf[$registerProperties])) {
$theValue = $this->cObj->stdWrap($theValue,$conf[$registerProperties]);
}
$GLOBALS['TSFE']->register[$theKey] = $this->cObj->stdWrap($conf[$theKey], $conf[$theKey . '.']);
$GLOBALS['TSFE']->register[$register] = $theValue;
$isExecuted[$register] = true;
}
}
}
    (1-1/1)