TYPO3 CMS  TYPO3_8-7
ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
5  // Register the backend module Web->Forms
7  'TYPO3.CMS.Form',
8  'web',
9  'formbuilder',
10  '',
11  [
12  'FormManager' => 'index, show, create, duplicate, references, delete',
13  'FormEditor' => '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  );
23 }
static registerModule($extensionName, $mainModuleName='', $subModuleName='', $position='', array $controllerActions=[], array $moduleConfiguration=[])