events/Configuration/TCA/Overrides/sys_category.php

17 lines
448 B
PHP
Raw Normal View History

<?php
defined('TYPO3') or die();
(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');