Bug #25394 ยป 18036.patch
t3lib/extjs/dataprovider/class.extdirect_dataprovider_contexthelp.php (revision ) | ||
---|---|---|
$GLOBALS['LANG']->loadSingleTableDescription($table);
|
||
}
|
||
if (is_array($GLOBALS['TCA_DESCR'][$table]) && is_array($GLOBALS['TCA_DESCR'][$table]['columns'])) {
|
||
$arrow = t3lib_iconWorks::getSpriteIcon('actions-view-go-forward');
|
||
foreach ($GLOBALS['TCA_DESCR'][$table]['columns'] as $field => $data) {
|
||
$output[$field] = array(
|
||
'description' => NULL,
|
||
... | ... | |
// add description
|
||
if ($data['description']) {
|
||
$output[$field]['description'] = $data['description'];
|
||
$output[$field]['description'] = $data['description'] .
|
||
($output[$field]['moreInfo'] ? $arrow : '');
|
||
}
|
||
}
|
||
}
|