‪TYPO3CMS  10.4
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 defined('TYPO3_MODE') or die();
4 
5 // Registers the workspaces Backend Module
6 \‪TYPO3\CMS\‪Extbase\Utility\ExtensionUtility::registerModule(
7  'Workspaces',
8  'web',
9  'workspaces',
10  'before:info',
11  [
12  // An array holding the controller-action-combinations that are accessible
13  \‪TYPO3\CMS\Workspaces\Controller\ReviewController::class => 'index'
14  ],
15  [
16  'access' => 'user,group',
17  'icon' => 'EXT:workspaces/Resources/Public/Icons/module-workspaces.svg',
18  'labels' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_mod.xlf',
19  'navigationComponentId' => '‪TYPO3/CMS/Backend/PageTree/PageTreeElement'
20  ]
21 );
22 
23 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('sys_workspace_stage', 'EXT:workspaces/Resources/Private/Language/locallang_csh_sysws_stage.xlf');
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:18
‪TYPO3