Skip to content

Commit f61e364

Browse files
garvinhickingbmack
authored andcommitted
[TASK] Move parent modules between 'tools' and 'system'
This is more fitting for upcoming label changes and grouping. Is not a breaking change for identifier relations. Resolves: #108069 Releases: main Change-Id: I1d5f618918ad679456e48ee549f59160aee95f1f Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/91582 Tested-by: core-ci <typo3@b13.com> Reviewed-by: Jochen Roth <rothjochen@gmail.com> Tested-by: Jochen Roth <rothjochen@gmail.com> Reviewed-by: Benni Mack <benni@typo3.org> Tested-by: Benni Mack <benni@typo3.org>
1 parent f62863b commit f61e364

File tree

10 files changed

+32
-25
lines changed

10 files changed

+32
-25
lines changed

typo3/sysext/backend/Configuration/Backend/Modules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
],
172172
],
173173
'tools_csp' => [
174-
'parent' => 'tools',
174+
'parent' => 'system',
175175
'access' => 'systemMaintainer',
176176
'iconIdentifier' => 'module-security',
177177
'labels' => 'backend.modules.content_security_policy',

typo3/sysext/belog/Configuration/Backend/Modules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
return [
99
'system_log' => [
10-
'parent' => 'system',
10+
'parent' => 'tools',
1111
'access' => 'user',
1212
'iconIdentifier' => 'module-belog',
1313
'labels' => 'belog.module',

typo3/sysext/beuser/Configuration/Backend/Modules.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
*/
99
return [
1010
'permissions_pages' => [
11-
'parent' => 'system',
11+
'parent' => 'tools',
1212
'position' => ['before' => '*'],
1313
'access' => 'admin',
14-
'path' => '/module/system/permissions',
14+
'path' => '/module/users/permissions',
1515
'iconIdentifier' => 'module-permission',
1616
'navigationComponent' => '@typo3/backend/tree/page-tree-element',
1717
'labels' => 'beuser.modules.permissions',
@@ -23,10 +23,10 @@
2323
],
2424
],
2525
'backend_user_management' => [
26-
'parent' => 'system',
26+
'parent' => 'tools',
2727
'position' => ['after' => 'permissions_pages'],
2828
'access' => 'admin',
29-
'path' => '/module/system/user-management',
29+
'path' => '/module/users/management',
3030
'iconIdentifier' => 'module-beuser',
3131
'labels' => 'beuser.modules.user_management',
3232
'aliases' => ['system_BeuserTxBeuser'],

typo3/sysext/core/Configuration/Backend/Modules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
'iconIdentifier' => 'modulegroup-system',
3939
],
4040
'integrations' => [
41-
'parent' => 'system',
41+
'parent' => 'tools',
4242
'position' => ['after' => 'backend_user_management'],
4343
'access' => 'admin',
4444
'workspaces' => 'live',

typo3/sysext/extensionmanager/Configuration/Backend/Modules.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@
1414
*/
1515
return [
1616
'extensionmanager' => [
17-
'parent' => 'tools',
17+
'parent' => 'system',
1818
'access' => 'systemMaintainer',
1919
'iconIdentifier' => 'module-extensionmanager',
20+
'position' => ['before' => '*'],
2021
'labels' => 'extensionmanager.module',
2122
'aliases' => ['tools_ExtensionmanagerExtensionmanager'],
22-
'path' => '/module/tools/extensionmanager',
23+
'path' => '/module/extensions',
2324
'extensionName' => 'Extensionmanager',
2425
'controllerActions' => [
2526
ListController::class => [

typo3/sysext/install/Configuration/Backend/Modules.php

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
*/
99
return [
1010
'tools_toolsmaintenance' => [
11-
'parent' => 'tools',
11+
'parent' => 'system',
1212
'access' => 'systemMaintainer',
13-
'path' => '/module/tools/maintenance',
13+
'position' => ['before' => '*'],
14+
'path' => '/module/system/maintenance',
1415
'iconIdentifier' => 'module-install-maintenance',
1516
'labels' => 'install.modules.maintenance',
1617
'routes' => [
@@ -26,9 +27,10 @@
2627
],
2728
],
2829
'tools_toolssettings' => [
29-
'parent' => 'tools',
30+
'parent' => 'system',
3031
'access' => 'systemMaintainer',
31-
'path' => '/module/tools/settings',
32+
'position' => ['before' => '*'],
33+
'path' => '/module/system/settings',
3234
'iconIdentifier' => 'module-install-settings',
3335
'labels' => 'install.modules.settings',
3436
'routes' => [
@@ -44,9 +46,10 @@
4446
],
4547
],
4648
'tools_toolsupgrade' => [
47-
'parent' => 'tools',
49+
'parent' => 'system',
4850
'access' => 'systemMaintainer',
49-
'path' => '/module/tools/upgrade',
51+
'position' => ['before' => '*'],
52+
'path' => '/module/system/upgrade',
5053
'iconIdentifier' => 'module-install-upgrade',
5154
'labels' => 'install.modules.upgrade',
5255
'routes' => [
@@ -62,9 +65,10 @@
6265
],
6366
],
6467
'tools_toolsenvironment' => [
65-
'parent' => 'tools',
68+
'parent' => 'system',
6669
'access' => 'systemMaintainer',
67-
'path' => '/module/tools/environment',
70+
'position' => ['before' => '*'],
71+
'path' => '/module/system/environment',
6872
'iconIdentifier' => 'module-install-environment',
6973
'labels' => 'install.modules.environment',
7074
'routes' => [

typo3/sysext/lowlevel/Configuration/Backend/Modules.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
return [
1010
'system_dbint' => [
1111
'parent' => 'system',
12+
'position' => ['after' => '*'],
1213
'access' => 'admin',
1314
'workspaces' => 'live',
1415
'path' => '/module/system/dbint',
@@ -22,6 +23,7 @@
2223
],
2324
'system_config' => [
2425
'parent' => 'system',
26+
'position' => ['after' => '*'],
2527
'access' => 'admin',
2628
'workspaces' => 'live',
2729
'path' => '/module/system/config',

typo3/sysext/reports/Configuration/Backend/Modules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99
return [
1010
'system_reports' => [
11-
'parent' => 'system',
11+
'parent' => 'tools',
1212
'access' => 'admin',
1313
'path' => '/module/system/reports',
1414
'iconIdentifier' => 'module-reports',

typo3/sysext/scheduler/Configuration/Backend/Modules.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
*/
88
return [
99
'scheduler' => [
10-
'parent' => 'system',
10+
'parent' => 'tools',
1111
'access' => 'admin',
12-
'path' => '/module/system/scheduler',
12+
'path' => '/module/scheduler',
1313
'workspaces' => 'live',
1414
'iconIdentifier' => 'module-scheduler',
1515
'labels' => 'scheduler.module',

typo3/sysext/styleguide/Configuration/Backend/Modules.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
return [
88
'styleguide' => [
9-
'parent' => 'system',
9+
'parent' => 'tools',
1010
'access' => 'admin',
1111
'workspaces' => 'live',
12-
'path' => '/module/system/styleguide',
12+
'path' => '/module/styleguide',
1313
'iconIdentifier' => 'module-styleguide',
1414
'labels' => 'styleguide.modules.overview',
1515
'aliases' => ['help_styleguide'],
@@ -22,7 +22,7 @@
2222
'parent' => 'styleguide',
2323
'access' => 'admin',
2424
'workspaces' => 'live',
25-
'path' => '/module/system/styleguide/components',
25+
'path' => '/module/styleguide/components',
2626
'labels' => 'styleguide.modules.components',
2727
'routes' => [
2828
'_default' => [
@@ -34,7 +34,7 @@
3434
'parent' => 'styleguide',
3535
'access' => 'admin',
3636
'workspaces' => 'live',
37-
'path' => '/module/system/styleguide/styles',
37+
'path' => '/module/styleguide/styles',
3838
'labels' => 'styleguide.modules.styles',
3939
'routes' => [
4040
'_default' => [
@@ -46,7 +46,7 @@
4646
'parent' => 'styleguide',
4747
'access' => 'admin',
4848
'workspaces' => 'live',
49-
'path' => '/module/system/styleguide/manage-page-trees',
49+
'path' => '/module/styleguide/manage-page-trees',
5050
'labels' => 'styleguide.modules.pagetrees',
5151
'routes' => [
5252
'_default' => [

0 commit comments

Comments
 (0)