32 if (is_array($conf)) {
34 foreach ($conf as $theKey => $theValue) {
35 $register = rtrim($theKey,
'.');
36 if (!isset($isExecuted[$register]) || !$isExecuted[$register]) {
37 $registerProperties = $register .
'.';
38 if (isset($conf[$register]) && isset($conf[$registerProperties])) {
39 $theValue = $this->cObj->stdWrap($conf[$register], $conf[$registerProperties]);
40 } elseif (isset($conf[$registerProperties])) {
41 $theValue = $this->cObj->stdWrap(
'', $conf[$registerProperties]);
43 $GLOBALS[
'TSFE']->register[$register] = $theValue;
44 $isExecuted[$register] =
true;