mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 08:56:11 +01:00
Daniel Siepmann
59db0d6432
There is no reason to limit. By default there should be no limit. If a specific installation needs a limit, it can set it itself.
16 lines
327 B
PHP
16 lines
327 B
PHP
<?php
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::makeCategorizable(
|
|
'events',
|
|
'tx_events_domain_model_event',
|
|
'categories',
|
|
[
|
|
'label' => 'Categories',
|
|
'fieldConfiguration' => [
|
|
'minitems' => 0,
|
|
'multiple' => true,
|
|
]
|
|
]
|
|
);
|