打字错误3 $全球['LANG']
TYPO3 $GLOBALS['LANG']
我用的是TYPO3 4.5。需要获取标签TCA记录的文本,扩展名class。我使用 $ GLOBALS [ 'LANG'] -> sL ($ label)
。当我登录时,BE GLOBALS [ 'LANG']
是对象 nad 一切正常。但是当注销时,结果中的 $ GLOBALS [ 'LANG'] = NULL
有错误。
如何在退出时$ GLOBALS [ 'LANG'] = not null
?
我的代码:
public function getСolumnValueTca($table,$column,$uid){
if ($column && $table) {
$output = null;
//-----------------------------------
if ($uid){
//Ищем нужную запись
foreach($TCA[$table]['columns'][$column]['config']['items'] as $key => $value){
if($value['1'] == $uid){
$label = $TCA[$table]['columns'] [$column]['config']['items'][$key]['0'];
break;
}
}
//------------------------------------------------------------------------------
if(isset($label)){
$output[$uid] = array(
'value' => $GLOBALS['LANG']->sL($label)
);
} else
$output = false;
} else {
//Вытаскиваем все возможные значения
foreach($TCA[$table]['columns'][$column]['config']['items'] as $key => $value){
$label = $TCA[$table]['columns'][$column]['config']['items'][$key]['0'];
$output[$TCA[$table]['columns'][$column]['config']['items'][$key]['1']] = array(
'value' => $GLOBALS['LANG']->sL($label)
);
}
//----------------------------------------------------------------------------
}
} else
$output = null;
return $output;
}
尝试以下操作:
$GLOBALS['TSFE']->sL('LLL:EXT:your_ext/pi1/locallang.xml:tx_yourext_pi1.label', 'altIfLabelNotFound'),
我用的是TYPO3 4.5。需要获取标签TCA记录的文本,扩展名class。我使用 $ GLOBALS [ 'LANG'] -> sL ($ label)
。当我登录时,BE GLOBALS [ 'LANG']
是对象 nad 一切正常。但是当注销时,结果中的 $ GLOBALS [ 'LANG'] = NULL
有错误。
如何在退出时$ GLOBALS [ 'LANG'] = not null
?
我的代码:
public function getСolumnValueTca($table,$column,$uid){
if ($column && $table) {
$output = null;
//-----------------------------------
if ($uid){
//Ищем нужную запись
foreach($TCA[$table]['columns'][$column]['config']['items'] as $key => $value){
if($value['1'] == $uid){
$label = $TCA[$table]['columns'] [$column]['config']['items'][$key]['0'];
break;
}
}
//------------------------------------------------------------------------------
if(isset($label)){
$output[$uid] = array(
'value' => $GLOBALS['LANG']->sL($label)
);
} else
$output = false;
} else {
//Вытаскиваем все возможные значения
foreach($TCA[$table]['columns'][$column]['config']['items'] as $key => $value){
$label = $TCA[$table]['columns'][$column]['config']['items'][$key]['0'];
$output[$TCA[$table]['columns'][$column]['config']['items'][$key]['1']] = array(
'value' => $GLOBALS['LANG']->sL($label)
);
}
//----------------------------------------------------------------------------
}
} else
$output = null;
return $output;
}
尝试以下操作:
$GLOBALS['TSFE']->sL('LLL:EXT:your_ext/pi1/locallang.xml:tx_yourext_pi1.label', 'altIfLabelNotFound'),