19-05-2026 Rebrand Pressekonto, Hub-Flux UI und Legacy-Media-Migration

Umbenennung presseportale → pressekonto in Domains, Themes und Dokumentation.
Design-Tokens, Portal-Shell, Customer-Dashboard, Auth- und Admin-PM-Views.
Artisan-Befehl migrate:legacy-media mit Tests und Hub-Flux-Entwicklungsdocs.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Kevin Adametz 2026-05-19 16:36:13 +00:00
parent 092ee0e918
commit 0a3e52d603
112 changed files with 8464 additions and 1649 deletions

View file

@ -16,7 +16,7 @@ class ThemeHelper
'positive' => 'img/logos/portal-logo-positive.svg',
'negative' => 'img/logos/portal-logo-negative.svg',
],
'presseportale' => [
'pressekonto' => [
'positive' => 'img/logos/portal-logo-positive.svg',
'negative' => 'img/logos/portal-logo-negative.svg',
],
@ -100,7 +100,7 @@ class ThemeHelper
{
$config = self::getDomainConfig();
return $config['domain_name'] ?? 'presseportale.test';
return $config['domain_name'] ?? 'pressekonto.test';
}
public static function getDomainUrl(): string
@ -118,12 +118,12 @@ class ThemeHelper
$theme = config('app.theme', 'portal');
$assetUrlMap = [
'portal' => 'https://assets.presseportale.test',
'presseportale' => 'https://assets.presseportale.test',
'portal' => 'https://assets.pressekonto.test',
'pressekonto' => 'https://assets.pressekonto.test',
'presseecho' => 'https://assets.presseecho.test',
'businessportal24' => 'https://assets.businessportal24.test',
];
return $assetUrlMap[$theme] ?? 'https://assets.presseportale.test';
return $assetUrlMap[$theme] ?? 'https://assets.pressekonto.test';
}
}