TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:00 +02:00
commit f9941541b7
1178 changed files with 135377 additions and 0 deletions
+128
View File
@@ -0,0 +1,128 @@
<?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\Backend\Template\Components\Menu;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* Represents a navigation menu in the backend module document header, typically rendered
* as a dropdown selector that allows users to switch between different views or modes
* within a module.
*
* Menus consist of multiple MenuItems and are registered with the MenuRegistry in the
* DocHeaderComponent. The menu is automatically rendered in the module's document header.
*
* Example:
*
* ```
* public function __construct(
* protected readonly ComponentFactory $componentFactory,
* ) {}
*
* public function myAction(): ResponseInterface
* {
* $menuRegistry = $this->moduleTemplate->getDocHeaderComponent()->getMenuRegistry();
* $menu = $this->componentFactory->createMenu();
* $menu->setIdentifier('myModuleMenu')
* ->setLabel('Select View');
*
* $menuItem1 = $this->componentFactory->createMenuItem()
* ->setTitle('List View')
* ->setHref($listViewUrl)
* ->setActive(true);
* $menu->addMenuItem($menuItem1);
*
* $menuItem2 = $this->componentFactory->createMenuItem()
* ->setTitle('Grid View')
* ->setHref($gridViewUrl);
* $menu->addMenuItem($menuItem2);
*
* $menuRegistry->addMenu($menu);
* }
* ```
*/
class Menu
{
protected string $identifier = '';
/**
* Label of the Menu (displayed as the dropdown label)
*/
protected string $label = '';
protected array $menuItems = [];
public function getIdentifier(): string
{
return $this->identifier;
}
public function getDataIdentifier(): string
{
$dataMenuIdentifier = GeneralUtility::camelCaseToLowerCaseUnderscored($this->identifier);
return str_replace('_', '-', $dataMenuIdentifier);
}
public function getLabel(): string
{
return $this->label;
}
public function getMenuItems(): array
{
return $this->menuItems;
}
public function setIdentifier(string $identifier): static
{
$this->identifier = $identifier;
return $this;
}
/**
* @param string $label LabelText for the menu (accepts LLL syntax)
*/
public function setLabel(string $label): static
{
$this->label = $label;
return $this;
}
/**
* Adds a new menuItem
*
* @param MenuItem $menuItem The menuItem to add to the menu
*
* @throws \InvalidArgumentException In case a menuItem is not valid
*/
public function addMenuItem(MenuItem $menuItem): static
{
if (!$menuItem->isValid()) {
throw new \InvalidArgumentException('MenuItem "' . $menuItem->getTitle() . '" is not valid', 1442236317);
}
// @todo implement sorting of menu items
// @todo maybe even things like spacers/sections?
$this->menuItems[] = clone $menuItem;
return $this;
}
public function isValid(): bool
{
return trim($this->getIdentifier()) !== '';
}
}
@@ -0,0 +1,82 @@
<?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\Backend\Template\Components\Menu;
use TYPO3\CMS\Backend\Template\Components\AbstractControl;
/**
* Represents a single item within a Menu in the backend module document header.
* Each MenuItem has a title, URL (href), and can be marked as active to indicate
* the current selection.
*
* MenuItems inherit from AbstractControl, providing access to common properties like
* title, CSS classes, and data attributes.
*
* Example:
*
* ```
* public function __construct(
* protected readonly ComponentFactory $componentFactory,
* ) {}
*
* public function myAction(): ResponseInterface
* {
* $menu = $this->componentFactory->createMenu();
* $menuItem = $this->componentFactory->createMenuItem()
* ->setTitle('List View')
* ->setHref('/my-module?view=list')
* ->setActive(true) // Marks this item as currently selected
* ->setClasses('my-custom-class')
* ->setDataAttributes(['action' => 'switch-view']);
* $menu->addMenuItem($menuItem);
* }
* ```
*/
class MenuItem extends AbstractControl
{
protected string $href = '';
protected bool $active = false;
public function setHref(string $href): static
{
$this->href = $href;
return $this;
}
public function getHref(): string
{
return $this->href;
}
public function setActive(bool $active): static
{
$this->active = $active;
return $this;
}
public function isActive(): bool
{
return $this->active;
}
public function isValid(): bool
{
return $this->getHref() !== '' && $this->getTitle() !== '';
}
}