1
0

fix(audit): restructure module pages to avoid admin/ path collision

Module pages must use a unique top-level directory (audit/) instead of
nesting under admin/ which collides with core's pages/admin/ during
module:build symlink creation. Routes still map admin/* URLs to the
audit/ page directory via manifest route targets.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 08:13:37 +01:00
parent 0c351f6aff
commit e10b1215da
45 changed files with 230 additions and 81 deletions

View File

@@ -0,0 +1,148 @@
<?php
namespace MintyPHP\Module\Notifications\Service;
final class NotificationMessage
{
/**
* @param array<string, mixed> $data
* @param list<scalar|null> $titleParams
* @param list<scalar|null> $bodyParams
*/
public function __construct(
private readonly string $type,
private readonly string $title,
private readonly ?string $body = null,
private readonly ?string $link = null,
private readonly array $data = [],
private readonly ?string $titleKey = null,
private readonly array $titleParams = [],
private readonly ?string $bodyKey = null,
private readonly array $bodyParams = []
) {
}
/**
* @param array<string, mixed> $data
*/
public static function plain(
string $type,
string $title,
?string $body = null,
?string $link = null,
array $data = []
): self {
return new self($type, $title, $body, $link, $data);
}
/**
* Creates a locale-neutral notification message while still storing a translated fallback.
*
* @param list<scalar|null> $titleParams
* @param list<scalar|null> $bodyParams
* @param array<string, mixed> $data
*/
public static function localized(
string $type,
string $titleKey,
array $titleParams = [],
?string $bodyKey = null,
array $bodyParams = [],
?string $link = null,
array $data = []
): self {
$resolvedTitle = self::translate($titleKey, $titleParams);
$resolvedBody = $bodyKey !== null && $bodyKey !== '' ? self::translate($bodyKey, $bodyParams) : null;
return new self(
$type,
$resolvedTitle,
$resolvedBody,
$link,
$data,
$titleKey,
self::normalizeParams($titleParams),
$bodyKey !== null && $bodyKey !== '' ? $bodyKey : null,
self::normalizeParams($bodyParams)
);
}
public function type(): string
{
return $this->type;
}
public function title(): string
{
return $this->title;
}
public function body(): ?string
{
return $this->body;
}
public function link(): ?string
{
return $this->link;
}
/**
* @return array<string, mixed>
*/
public function data(): array
{
return $this->data;
}
public function titleKey(): ?string
{
return $this->titleKey;
}
/**
* @return list<scalar|null>
*/
public function titleParams(): array
{
return $this->titleParams;
}
public function bodyKey(): ?string
{
return $this->bodyKey;
}
/**
* @return list<scalar|null>
*/
public function bodyParams(): array
{
return $this->bodyParams;
}
/**
* @param array<mixed> $params
* @return list<scalar|null>
*/
private static function normalizeParams(array $params): array
{
$normalized = [];
foreach ($params as $value) {
if (is_scalar($value) || $value === null) {
$normalized[] = $value;
}
}
return array_values($normalized);
}
/**
* @param array<mixed> $params
*/
private static function translate(string $key, array $params): string
{
$normalized = self::normalizeParams($params);
return (string) t($key, ...$normalized);
}
}