Feature: #109429 - Introduce PSR-14 ModifyLocalizationHandlerIsAvailableEvent
See forge#109429
Description
With forge#108049, the translation workflow in the backend has been modernized
in the Content > Layout and Content > Record module views. Technically, this
workflow wizard is backed by localization handlers and finishers.
The PSR-14 event
Modify
is introduced now and fired in
Localization
to allow overruling the available state of any registered localization handler based
on the
\Localization.
The event provides the following properties:
public readonly string $identifier: String identifier returned byLocalizationfrom the handler.Handler Interface:: get Identifier () public readonly string $class: The concrete className in case a handler has been xclass'd without changing the identifier.Name public readonly Localization: The localization instruction passed to the handler'sInstructions $instructions ismethod to define the context.Available () public bool $is: The returned availibility state by the handler, which can be altered by a PSR-14 Event listener.Available
Example
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\EventListener;
use TYPO3\CMS\Core\Attribute\AsEventListener;
use TYPO3\CMS\Backend\Localization\Event\ModifyLocalizationHandlerIsAvailableEvent;
use TYPO3\CMS\Backend\Localization\LocalizationInstructions;
use TYPO3\CMS\Backend\Localization\LocalizationMode;
final class DisableManualLocalizationHandlerForCustomTableEventListener
{
#[AsEventListener(identifier: 'myext/disable-manual-localization-handler-custom-table')]
public function __invoke(
ModifyLocalizationHandlerIsAvailableEvent $event,
): void {
if ($event->identifier !== 'manual') {
// Return early if not ManualLocalizationHandler
return;
}
if ($event->className !== ManualLocalizationHandler::class) {
// Return early in case manual identifier is provided but
// customized (xlassed) class given. Just for the sake of
// an example for that property.
}
if ($event->instructions->mode !== LocalizationMode::TRANSLATE) {
// Return early in case not handling translation
// (localization) mode.
return;
}
if ($event->instructions->mainRecordType === 'my_custom_table') {
// Disallow translation/localization for 'my_custom_table'
// in general with the default core handler.
$event->isAvailable = false;
}
}
}
Impact
Custom extensions (public or project-specific) are now able to intercept, which handlers are available for offering localization steps in the translation wizard, based on the provided localization context.