Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
27 | public function processData() |
||
28 | { |
||
29 | $register = TaggerRegister::getRegister(); |
||
30 | foreach ($register as $configuration) { |
||
31 | $table = $configuration['tableName']; |
||
32 | $GLOBALS['TCA'][$table]['columns']['tagger'] = [ |
||
33 | 'exclude' => 1, |
||
34 | 'label' => TranslateUtility::getLllOrHelpMessage('tags', 'tagger'), |
||
35 | 'config' => IntegrationService::getTagFieldConfiguration($table) |
||
36 | ]; |
||
37 | ExtensionManagementUtility::addToAllTCAtypes($table, 'tagger'); |
||
38 | } |
||
39 | } |
||
40 | } |
||
41 |