Skip to content

Commit

Permalink
[TASK] Update backend module configuration
Browse files Browse the repository at this point in the history
Update backend labels shown in "About TYPO3 CMS" module.
Move backend module to group "System".
  • Loading branch information
minapok committed Oct 31, 2023
1 parent e365747 commit 0851659
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Configuration/Backend/Modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
return [
// Register styleguide backend module in help toolbar
'help_styleguide' => [
'parent' => 'help',
'access' => 'user',
'path' => '/module/help/styleguide',
'parent' => 'system',
'access' => 'admin',
'workspaces' => 'live',
'path' => '/module/system/styleguide',
'iconIdentifier' => 'module-styleguide',
'labels' => 'LLL:EXT:styleguide/Resources/Private/Language/locallang.xlf',
'labels' => [
'title' => 'LLL:EXT:styleguide/Resources/Private/Language/locallang.xlf:module.configuration.title',
'shortDescription' => 'LLL:EXT:styleguide/Resources/Private/Language/locallang.xlf:module.configuration.shortDescription',
'description' => 'LLL:EXT:styleguide/Resources/Private/Language/locallang.xlf:module.configuration.description',
],
'routes' => [
'_default' => [
'target' => BackendController::class . '::handleRequest',
Expand Down
10 changes: 10 additions & 0 deletions Resources/Private/Language/locallang.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
<file source-language="en" datatype="plaintext" original="messages" date="2013-05-01T00:00:000" product-name="styleguide">
<header/>
<body>
<trans-unit id="module.configuration.title" resname="module.configuration.title">
<source>Styleguide</source>
</trans-unit>
<trans-unit id="module.configuration.shortDescription" resname="module.configuration.shortDescription">
<source>Styleguide of the TYPO3 CMS</source>
</trans-unit>
<trans-unit id="module.configuration.description" resname="module.configuration.description">
<source>The module offers the creation of a page tree either with TCA demo records or content elements.&lt;br /&gt;In addition, the most well-known backend components that come with the TYPO3 CMS are presented.&lt;br /&gt;&lt;em&gt;Access for 'admin' users only!&lt;/em&gt;</source>
</trans-unit>

<trans-unit id="mlang_tabs_tab">
<source>Styleguide</source>
</trans-unit>
Expand Down

0 comments on commit 0851659

Please sign in to comment.