TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:30 +02:00
commit edc7fea85a
20 changed files with 2188 additions and 0 deletions
+45
View File
@@ -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,
],
],
];