TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
use TYPO3\CMS\Info\Controller\PageInformationController;
|
||||
use TYPO3\CMS\Info\Controller\TranslationStatusController;
|
||||
|
||||
/**
|
||||
* Definitions for modules provided by EXT:info
|
||||
*/
|
||||
return [
|
||||
'web_info_overview' => [
|
||||
'parent' => 'content_status',
|
||||
'position' => ['before' => '*'],
|
||||
'access' => 'user',
|
||||
'path' => '/module/web/info/overview',
|
||||
'iconIdentifier' => 'module-info',
|
||||
'labels' => 'info.modules.overview',
|
||||
'routes' => [
|
||||
'_default' => [
|
||||
'target' => PageInformationController::class . '::handleRequest',
|
||||
],
|
||||
],
|
||||
'moduleData' => [
|
||||
'pages' => '0',
|
||||
'depth' => 0,
|
||||
'lang' => 0,
|
||||
],
|
||||
],
|
||||
'web_info_translations' => [
|
||||
'parent' => 'content_status',
|
||||
'position' => ['after' => 'web_info_overview'],
|
||||
'access' => 'user',
|
||||
'path' => '/module/web/info/translations',
|
||||
'iconIdentifier' => 'module-info',
|
||||
'labels' => 'info.modules.translations',
|
||||
'routes' => [
|
||||
'_default' => [
|
||||
'target' => TranslationStatusController::class . '::handleRequest',
|
||||
],
|
||||
],
|
||||
'moduleData' => [
|
||||
'depth' => 0,
|
||||
'lang' => 0,
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'dependencies' => [],
|
||||
'imports' => [
|
||||
'@typo3/info/' => 'EXT:info/Resources/Public/JavaScript/',
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
services:
|
||||
_defaults:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
public: false
|
||||
|
||||
TYPO3\CMS\Info\:
|
||||
resource: '../Classes/*'
|
||||
@@ -0,0 +1,18 @@
|
||||
mod.web_info.fieldDefinitions {
|
||||
0 {
|
||||
label = LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:pages_0
|
||||
fields = title,uid,sys_language_uid,slug,starttime,endtime,fe_group,target,link,shortcut,shortcut_mode
|
||||
}
|
||||
1 {
|
||||
label = LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:pages_1
|
||||
fields = title,uid,###ALL_TABLES###
|
||||
}
|
||||
2 {
|
||||
label = LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:pages_2
|
||||
fields = title,uid,sys_language_uid,lastUpdated,newUntil,cache_timeout,php_tree_stop,TSconfig,is_siteroot
|
||||
}
|
||||
3 {
|
||||
label = LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:pages_layouts
|
||||
fields = title,uid,sys_language_uid,actual_backend_layout,backend_layout,backend_layout_next_level,layout
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user