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
+37
View File
@@ -0,0 +1,37 @@
<?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\Core\Validation;
use TYPO3\CMS\Core\Exception;
/**
* @internal
*/
final class ResultException extends Exception
{
/**
* @var list<ResultMessage>
*/
public readonly array $messages;
public function __construct(string $message = '', int $code = 0, ResultMessage ...$messages)
{
parent::__construct($message, $code);
$this->messages = $messages;
}
}
+31
View File
@@ -0,0 +1,31 @@
<?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\Core\Validation;
use TYPO3\CMS\Core\Localization\LabelBag;
/**
* @internal
*/
final readonly class ResultMessage
{
public function __construct(
public string $message,
public ?LabelBag $labelBag = null,
) {}
}
@@ -0,0 +1,49 @@
<?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\Core\Validation;
use TYPO3\CMS\Core\Localization\TranslatorInterface;
trait ResultRenderingTrait
{
public function renderResultException(ResultException $exception, ?TranslatorInterface $translator = null): string
{
return sprintf(
'%s: %s',
$exception->getMessage(),
implode(
' | ',
$this->compileResultMessages($exception->messages, $translator)
)
);
}
/**
* @param list<ResultMessage> $messages
* @return list<string>
*/
public function compileResultMessages(array $messages, ?TranslatorInterface $translator = null): array
{
return array_map(
static fn(ResultMessage $message): string => $message->labelBag !== null && $translator !== null
? $message->labelBag->compile($translator)
: $message->message,
$messages
);
}
}