Your IP : 216.73.216.220


Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-form/Configuration/Backend/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/cms-form/Configuration/Backend/Modules.php

<?php

use TYPO3\CMS\Form\Controller\FormEditorController;
use TYPO3\CMS\Form\Controller\FormManagerController;

/**
 * Definitions for modules provided by EXT:form
 */
return [
    'web_FormFormbuilder' => [
        'parent' => 'web',
        'access' => 'user',
        'iconIdentifier' => 'module-form',
        'inheritNavigationComponentFromMainModule' => false,
        'labels' => 'LLL:EXT:form/Resources/Private/Language/locallang_module.xlf',
        'extensionName' => 'Form',
        'controllerActions' => [
            FormManagerController::class => [
                'index', 'show', 'create', 'duplicate', 'references', 'delete',
            ],
            FormEditorController::class => [
                'index', 'saveForm', 'renderFormPage', 'renderRenderableOptions',
            ],
        ],
    ],
];