‪TYPO3CMS  ‪main
ext_localconf.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
8 
9 defined('TYPO3') or die();
10 
11 ‪ExtensionUtility::configurePlugin(
12  'TestIrreForeignfield',
13  'Test',
14  [
15  ‪QueueController::class => ['index'],
16  ‪ContentController::class => ['list', 'show', 'new', 'create', 'edit', 'update', 'delete'],
17  ],
18  [
19  ‪ContentController::class => ['create', 'update', 'delete'],
20  ]
21 );
‪TYPO3\CMS\Extbase\Utility\ExtensionUtility
Definition: ExtensionUtility.php:27
‪TYPO3Tests\TestIrreForeignfield\Controller\ContentController
Definition: ContentController.php:31
‪TYPO3Tests\TestIrreForeignfield\Controller\QueueController
Definition: QueueController.php:35