‪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  'BlogExample',
13  'Blogs',
14  [
15  ‪BlogController::class => ['list', 'testForm', 'testForward', 'testForwardTarget', 'testRelatedObject'],
16  ]
17 );
18 ‪ExtensionUtility::configurePlugin(
19  'BlogExample',
20  'Content',
21  [
22  ‪ContentController::class => ['list'],
23  ]
24 );
‪TYPO3Tests\BlogExample\Controller\BlogController
Definition: BlogController.php:34
‪TYPO3\CMS\Extbase\Utility\ExtensionUtility
Definition: ExtensionUtility.php:27
‪TYPO3Tests\BlogExample\Controller\ContentController
Definition: ContentController.php:31