3 defined('TYPO3') or die();
6 $GLOBALS['TBE_STYLES']['skins']['backend'] = [
8 'stylesheetDirectories' => [
9 'css' => 'EXT:backend/Resources/Public/Css/'
13 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::addModule(
19 'routeTarget' => \TYPO3\CMS\Backend\Controller\PageLayoutController
::class . '::mainAction',
20 'access' => 'user,group',
21 'name' => 'web_layout',
22 'icon' => 'EXT:backend/Resources/Public/Icons/module-page.svg',
23 'labels' => 'LLL:EXT:backend/Resources/Private/Language/locallang_mod.xlf'
27 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::addModule(
33 'routeTarget' => \TYPO3\CMS\Backend\Controller\SiteConfigurationController
::class . '::handleRequest',
35 'name' => 'site_configuration',
36 'icon' => 'EXT:backend/Resources/Public/Icons/module-sites.svg',
37 'labels' => 'LLL:EXT:backend/Resources/Private/Language/locallang_siteconfiguration_module.xlf'
41 // "Sort sub pages" csh
42 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::addLLrefForTCAdescr(
44 'EXT:backend/Resources/Private/Language/locallang_pages_sort_csh.xlf'
46 // "Create multiple pages" csh
47 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::addLLrefForTCAdescr(
49 'EXT:backend/Resources/Private/Language/locallang_pages_new_csh.xlf'
53 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::addModule(
59 'routeTarget' => \TYPO3\CMS\Backend\Controller\HelpController
::class . '::handleRequest',
60 'name' => 'help_cshmanual',
61 'access' => 'user,group',
62 'icon' => 'EXT:backend/Resources/Public/Icons/module-cshmanual.svg',
63 'labels' => 'LLL:EXT:backend/Resources/Private/Language/locallang_mod_help_cshmanual.xlf',
67 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::addModule(
73 'routeTarget' => \TYPO3\CMS\Backend\Controller\AboutController
::class . '::indexAction',
74 'access' => 'user,group',
75 'name' => 'help_AboutAbout',
76 'icon' => 'EXT:backend/Resources/Public/Icons/module-about.svg',
77 'labels' => 'LLL:EXT:backend/Resources/Private/Language/Modules/about.xlf'
81 // Register the folder tree core navigation component
82 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::addCoreNavigationComponent('file', 'TYPO3/CMS/Backend/Tree/FileStorageTreeContainer');