[ 'allowedTables' => '*' ], (string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SYSFOLDER => [ // Doktype 254 is a 'Folder' - a general purpose storage folder for whatever you like. // In CMS context it's NOT a viewable page. Can contain any element. 'allowedTables' => '*' ], (string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_RECYCLER => [ // Doktype 255 is a recycle-bin. 'allowedTables' => '*' ], 'default' => [ 'allowedTables' => 'pages,sys_category,sys_file_reference,sys_file_collection', 'onlyAllowedTables' => false ], ]; /** * $TBE_MODULES contains the structure of the backend modules as they are * arranged in main- and sub-modules. Every entry in this array represents a * menu item on either first (key) or second level (value from list) in the * left menu in the TYPO3 backend * For information about adding modules to TYPO3 you should consult the * documentation found in "Inside TYPO3" */ $GLOBALS['TBE_MODULES'] = [ 'web' => 'list', 'site' => '', 'file' => '', 'user' => '', 'tools' => '', 'system' => '', 'help' => '', '_configuration' => [ 'web' => [ 'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_web.xlf', 'name' => 'web', 'iconIdentifier' => 'module-web' ], 'site' => [ 'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_site.xlf', 'name' => 'site', 'workspaces' => 'online', 'iconIdentifier' => 'module-site', ], 'file' => [ 'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_file.xlf', 'navigationFrameModule' => 'file_navframe', 'name' => 'file', 'workspaces' => 'online,custom', 'iconIdentifier' => 'module-file' ], 'user' => [ 'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_usertools.xlf', 'name' => 'user', 'iconIdentifier' => 'status-user-backend' ], 'tools' => [ 'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_admintools.xlf', 'name' => 'tools', 'iconIdentifier' => 'module-tools' ], 'system' => [ 'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_system.xlf', 'name' => 'system', 'iconIdentifier' => 'module-system' ], 'help' => [ 'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_help.xlf', 'name' => 'help', 'iconIdentifier' => 'module-help' ] ] ]; // Register the page tree core navigation component \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addCoreNavigationComponent('web', 'TYPO3/CMS/Backend/PageTree/PageTreeElement'); /** * $TBE_STYLES configures backend styles and colors; Basically this contains * all the values that can be used to create new skins for TYPO3. * For information about making skins to TYPO3 you should consult the * documentation found in "Inside TYPO3" */ $GLOBALS['TBE_STYLES'] = []; /** * Setting up $TCA_DESCR - Context Sensitive Help (CSH) * For information about using the CSH API in TYPO3 you should consult the * documentation found in "Inside TYPO3" */ \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('pages', 'EXT:core/Resources/Private/Language/locallang_csh_pages.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('be_users', 'EXT:core/Resources/Private/Language/locallang_csh_be_users.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('be_groups', 'EXT:core/Resources/Private/Language/locallang_csh_be_groups.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('sys_filemounts', 'EXT:core/Resources/Private/Language/locallang_csh_sysfilem.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('sys_file_reference', 'EXT:core/Resources/Private/Language/locallang_csh_sysfilereference.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('sys_file_storage', 'EXT:core/Resources/Private/Language/locallang_csh_sysfilestorage.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('sys_language', 'EXT:core/Resources/Private/Language/locallang_csh_syslang.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('sys_news', 'EXT:core/Resources/Private/Language/locallang_csh_sysnews.xlf'); // General Core \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('xMOD_csh_corebe', 'EXT:core/Resources/Private/Language/locallang_csh_corebe.xlf');