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