Feature #48807
Field header title from TCA title
Start date:
2013-06-03
Due date:
% Done:
0%
Description
hi.. for the export module i think the only feature missing is to use as field header their TCA title, and not the db fieldname
History
#1
Updated by Yohann CERDAN over 6 years ago
- Assignee set to Yohann CERDAN
It is already like that in the backend. Are you talking about the backend module or the json export?
#2
Updated by Stefano Cecere over 6 years ago
ok the problem is that you don't call t3lib_div::loadTCA($table); in public function getResultRowTitles($row, $table) {
so the $conf = $GLOBALS['TCA'][$table]; is empty (on TYPO3 <= 6.0.. the behaviors changed with >6.1 )
maybe you could add a simple (pseudocode):
if (TYPO3_VER <= 6) { t3lib_div::loadTCA($table); }
#3
Updated by Yohann CERDAN over 6 years ago
Tested with 4.5-6.2 and i have the labels in export mode