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