TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,47 @@
.. include:: /Includes.rst.txt
.. _feature-82426:
=====================================================================
Feature: #82426 - New navigation module registration (e.g. Page tree)
=====================================================================
See :issue:`82426`
Description
===========
When registering an extensions's BE module with :php:`ExtensionUtility::registerModule()` it is possible
to define 'navigationComponentId'.
Before, the 'navigationComponentId' has been used to pass a name of the ExtJS module registered with
:php:`ExtensionManagementUtility::addNavigationComponent()`.
Now it should contain a RequireJS module name. No additional registration is necessary.
The TYPO3 page tree navigation component name 'typo3-pagetree' will still work (thanks to the BC layer)
but will throw a deprecation notice.
Should be changed to new configuration:
.. code-block:: php
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'TYPO3.CMS.Workspaces',
'web',
'workspaces',
'before:info',
[
// An array holding the controller-action-combinations that are accessible
'Review' => 'index,fullIndex,singleIndex',
'Preview' => 'index,newPage'
],
[
'access' => 'user,group',
'icon' => 'EXT:workspaces/Resources/Public/Icons/module-workspaces.svg',
'labels' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_mod.xlf',
'navigationComponentId' => 'TYPO3/CMS/Backend/PageTree/PageTreeElement'
]
);
.. index:: Backend, JavaScript, PHP-API