22 lines
909 B
PHP
Executable File
22 lines
909 B
PHP
Executable File
<?php
|
|
$appBaseUrl = $GLOBALS['app_base_url'] ?? '';
|
|
|
|
$defaultNavLinks = [
|
|
['id' => 'dashboard', 'label' => 'Dashboard', 'href' => $appBaseUrl . '/admin/dashboard.php'],
|
|
['id' => 'system', 'label' => 'Systemeinstellungen', 'href' => $appBaseUrl . '/admin/system.php'],
|
|
['id' => 'settings', 'label' => 'API & Tabellen', 'href' => $appBaseUrl . '/admin/settings.php'],
|
|
['id' => 'users', 'label' => 'Userverwaltung', 'href' => $appBaseUrl . '/admin/users.php'],
|
|
['id' => 'profile', 'label' => 'Mein Konto', 'href' => $appBaseUrl . '/admin/profile.php'],
|
|
];
|
|
|
|
if (empty($navLinks)) {
|
|
$navLinks = $defaultNavLinks;
|
|
}
|
|
|
|
$layoutSharedCss = $layoutSharedCss ?? [];
|
|
if (!is_array($layoutSharedCss)) {
|
|
$layoutSharedCss = [$layoutSharedCss];
|
|
}
|
|
$layoutSharedCss[] = '/assets/css/accountsetup.css';
|
|
$layoutSharedCss = array_values(array_unique(array_filter($layoutSharedCss)));
|