Bug #20544 ยป 11241.diff
typo3/sysext/lowlevel/config/index.php (working copy) | ||
---|---|---|
6 => $GLOBALS['LANG']->getLL('tbemodulesext', true),
|
||
7 => $GLOBALS['LANG']->getLL('tbeStyles', true),
|
||
8 => $GLOBALS['LANG']->getLL('beUser', true),
|
||
9 => $GLOBALS['LANG']->getLL('usersettings', true),
|
||
),
|
||
'regexsearch' => '',
|
||
'fixedLgd' => ''
|
||
... | ... | |
$theVar = $GLOBALS['BE_USER']->uc;
|
||
$arrayBrowser->varName = '$BE_USER->uc';
|
||
break;
|
||
case 9:
|
||
$theVar = $GLOBALS['TYPO3_USER_SETTINGS'];
|
||
$arrayBrowser->varName = '$TYPO3_USER_SETTINGS';
|
||
break;
|
||
default:
|
||
$theVar = array();
|
||
break;
|
typo3/sysext/lowlevel/config/locallang.xml (working copy) | ||
---|---|---|
<label index="loadedExt">$TYPO3_LOADED_EXT (Loaded Extensions)</label>
|
||
<label index="tbeStyles">$TBE_STYLES (Skinning Styles)</label>
|
||
<label index="beUser">$BE_USER->uc (User Settings)</label>
|
||
<label index="usersettings">$TYPO3_USER_SETTINGS (User Settings Configuration)</label>
|
||
<label index="t3services">$T3_SERVICES (Registered Services)</label>
|
||
<label index="tbemodulesext">$TBE_MODULES_EXT (BE Modules Extensions)</label>
|
||
<label index="tbemodules">$TBE_MODULES (BE Modules)</label>
|