mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 07:16:13 +01:00
14 lines
420 B
PHP
14 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');
|