‪TYPO3CMS  11.5
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
10 
11 defined('TYPO3') or die();
12 
13 // Register as a skin
14 ‪$GLOBALS['TBE_STYLES']['skins']['backend']['stylesheetDirectories']['css'] = 'EXT:backend/Resources/Public/Css/';
15 
17  'web',
18  'layout',
19  'top',
20  '',
21  [
22  'routeTarget' => ‪PageLayoutController::class . '::mainAction',
23  'access' => 'user,group',
24  'name' => 'web_layout',
25  'iconIdentifier' => 'module-page',
26  'labels' => 'LLL:EXT:backend/Resources/Private/Language/locallang_mod.xlf',
27  ]
28 );
29 
31  'site',
32  'configuration',
33  'top',
34  '',
35  [
36  'routeTarget' => ‪SiteConfigurationController::class . '::handleRequest',
37  'access' => 'admin',
38  'name' => 'site_configuration',
39  'iconIdentifier' => 'module-sites',
40  'labels' => 'LLL:EXT:backend/Resources/Private/Language/locallang_siteconfiguration_module.xlf',
41  ]
42 );
43 
44 // "Sort sub pages" csh
45 ‪ExtensionManagementUtility::addLLrefForTCAdescr(
46  'pages_sort',
47  'EXT:backend/Resources/Private/Language/locallang_pages_sort_csh.xlf'
48 );
49 // "Create multiple pages" csh
50 ‪ExtensionManagementUtility::addLLrefForTCAdescr(
51  'pages_new',
52  'EXT:backend/Resources/Private/Language/locallang_pages_new_csh.xlf'
53 );
54 
55 // Csh manual
57  'help',
58  'cshmanual',
59  'top',
60  '',
61  [
62  'routeTarget' => ‪HelpController::class . '::handleRequest',
63  'name' => 'help_cshmanual',
64  'access' => 'user,group',
65  'iconIdentifier' => 'module-cshmanual',
66  'labels' => 'LLL:EXT:backend/Resources/Private/Language/locallang_mod_help_cshmanual.xlf',
67  ]
68 );
69 
71  'help',
72  'AboutAbout',
73  'top',
74  null,
75  [
76  'routeTarget' => ‪AboutController::class . '::indexAction',
77  'access' => 'user,group',
78  'name' => 'help_AboutAbout',
79  'iconIdentifier' => 'module-about',
80  'labels' => 'LLL:EXT:backend/Resources/Private/Language/Modules/about.xlf',
81  ]
82 );
83 
84 // Register the folder tree core navigation component
85 ‪ExtensionManagementUtility::addCoreNavigationComponent('file', '‪TYPO3/CMS/Backend/Tree/FileStorageTreeContainer');
‪$GLOBALS
‪$GLOBALS['TBE_STYLES']['skins']['backend']['stylesheetDirectories']['css']
Definition: ext_tables.php:14
‪TYPO3
‪TYPO3\CMS\Backend\Controller\HelpController
Definition: HelpController.php:42
‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility
Definition: ExtensionManagementUtility.php:43
‪TYPO3\CMS\Backend\Controller\PageLayoutController
Definition: PageLayoutController.php:58
‪TYPO3\CMS\Backend\Controller\SiteConfigurationController
Definition: SiteConfigurationController.php:68
‪TYPO3\CMS\Backend\Controller\AboutController
Definition: AboutController.php:38