mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 11:56:10 +01:00
15 lines
420 B
PHP
15 lines
420 B
PHP
|
<?php
|
||
|
|
||
|
(function (string $extKey, string $table) {
|
||
|
\TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiveWithOverrule($GLOBALS['TCA'][$table], [
|
||
|
'columns' => [
|
||
|
'sorting' => [
|
||
|
'config' => [
|
||
|
// Allow extbase to map this column to model
|
||
|
'type' => 'passthrough',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
]);
|
||
|
})('events', 'sys_category');
|