diff --git a/typo3/sysext/core/Documentation/Changelog/12.0/Feature-96152-BackendToolbarItemsOverviewInConfigurationModule.rst b/typo3/sysext/core/Documentation/Changelog/12.0/Feature-96152-BackendToolbarItemsOverviewInConfigurationModule.rst new file mode 100644 index 0000000000000000000000000000000000000000..5dfabc214aee8b2db3d2a5fae156f84f91337d46 --- /dev/null +++ b/typo3/sysext/core/Documentation/Changelog/12.0/Feature-96152-BackendToolbarItemsOverviewInConfigurationModule.rst @@ -0,0 +1,27 @@ +.. include:: ../../Includes.txt + +======================================================================== +Feature: #96152 - Backend Toolbar items overview in configuration module +======================================================================== + +See :issue:`96152` + +Description +=========== + +With :issue:`96041`, the registration of backend toolbar items had been +improved. Instead of being registered via :php:`$GLOBALS`, all implementations +of :php:`ToolbarItemsInterface` are now automatically registered, while taking +the defined :php:`index` into account. + +To still allow administrators an overview of the registered toolbar items, +especially the final ordering, a corresponding list has been added to +the configuration module. + +Impact +====== + +It's now possible for administrators to get an overview of all registered +toolbar items and the final ordering in the configuration module. + +.. index:: Backend, ext:lowlevel diff --git a/typo3/sysext/lowlevel/Classes/ConfigurationModuleProvider/ToolbarItemsProvider.php b/typo3/sysext/lowlevel/Classes/ConfigurationModuleProvider/ToolbarItemsProvider.php new file mode 100644 index 0000000000000000000000000000000000000000..1a697151f2495c219eb010cb07eea3093efc007e --- /dev/null +++ b/typo3/sysext/lowlevel/Classes/ConfigurationModuleProvider/ToolbarItemsProvider.php @@ -0,0 +1,42 @@ +<?php + +declare(strict_types=1); + +/* + * This file is part of the TYPO3 CMS project. + * + * It is free software; you can redistribute it and/or modify it under + * the terms of the GNU General Public License, either version 2 + * of the License, or any later version. + * + * For the full copyright and license information, please read the + * LICENSE.txt file that was distributed with this source code. + * + * The TYPO3 project - inspiring people to share! + */ + +namespace TYPO3\CMS\Lowlevel\ConfigurationModuleProvider; + +use TYPO3\CMS\Backend\Toolbar\ToolbarItemsRegistry; + +class ToolbarItemsProvider extends AbstractProvider +{ + protected ToolbarItemsRegistry $toolbarItemsRegistry; + + public function __construct(ToolbarItemsRegistry $toolbarItemsRegistry) + { + $this->toolbarItemsRegistry = $toolbarItemsRegistry; + } + + public function getConfiguration(): array + { + $configuration = []; + foreach ($this->toolbarItemsRegistry->getToolbarItems() as $item) { + $configuration[get_class($item)] = [ + 'index' => $item->getIndex(), + 'hasDropdown' => $item->hasDropDown(), + ]; + } + return $configuration; + } +} diff --git a/typo3/sysext/lowlevel/Configuration/Services.yaml b/typo3/sysext/lowlevel/Configuration/Services.yaml index 70a16b84c6d08bdda15bc1e57e667b1d3de48bd9..bf764ba5937d115da22fa71b2d0ac405900d24dc 100644 --- a/typo3/sysext/lowlevel/Configuration/Services.yaml +++ b/typo3/sysext/lowlevel/Configuration/Services.yaml @@ -216,4 +216,13 @@ services: - name: 'lowlevel.configuration.module.provider' identifier: 'softReferenceParsers' label: 'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:softReferenceParsers' + before: 'toolbaritems' after: 'mfaproviders' + + lowlevel.configuration.module.provider.toolbaritems: + class: 'TYPO3\CMS\Lowlevel\ConfigurationModuleProvider\ToolbarItemsProvider' + tags: + - name: 'lowlevel.configuration.module.provider' + identifier: 'toolbaritems' + label: 'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:toolbarItems' + after: 'softReferenceParsers' diff --git a/typo3/sysext/lowlevel/Resources/Private/Language/locallang.xlf b/typo3/sysext/lowlevel/Resources/Private/Language/locallang.xlf index df2cc28d4bdfdb71c2d0e01c3cc6af3de7a6a883..6910c50d3c772297d4d57ef698c5913d1128686b 100644 --- a/typo3/sysext/lowlevel/Resources/Private/Language/locallang.xlf +++ b/typo3/sysext/lowlevel/Resources/Private/Language/locallang.xlf @@ -45,6 +45,9 @@ <trans-unit id="softReferenceParsers" resname="softReferenceParsers"> <source>Soft Reference Parsers</source> </trans-unit> + <trans-unit id="toolbarItems" resname="toolbarItems"> + <source>Backend Toolbar Items</source> + </trans-unit> <trans-unit id="formYamlConfiguration" resname="formYamlConfiguration"> <source>Form: YAML Configuration</source> </trans-unit>