‪TYPO3CMS  10.4
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 defined('TYPO3_MODE') or die();
4 
5 // Register the backend module Web->Forms
6 \‪TYPO3\CMS\‪Extbase\Utility\ExtensionUtility::registerModule(
7  'Form',
8  'web',
9  'formbuilder',
10  '',
11  [
12  \‪TYPO3\CMS\Form\Controller\FormManagerController::class => 'index, show, create, duplicate, references, delete',
13  \‪TYPO3\CMS\Form\Controller\FormEditorController::class => 'index, saveForm, renderFormPage, renderRenderableOptions',
14  ],
15  [
16  'access' => 'user,group',
17  'icon' => 'EXT:form/Resources/Public/Icons/module-form.svg',
18  'labels' => 'LLL:EXT:form/Resources/Private/Language/locallang_module.xlf',
19  'navigationComponentId' => '',
20  'inheritNavigationComponentFromMainModule' => false
21  ]
22 );
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:18
‪TYPO3