2025-11-04 09:05:55 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'home' => [
|
2026-02-09 14:26:46 +01:00
|
|
|
'label' => 'Dashboard',
|
|
|
|
|
'icon' => 'bolt',
|
|
|
|
|
'link' => '/',
|
|
|
|
|
'current' => function (string $current): bool {
|
|
|
|
|
$path = Kirby\Cms\App::instance()->path();
|
|
|
|
|
return Str::contains($path, '/site');
|
|
|
|
|
}
|
2025-11-04 09:05:55 +01:00
|
|
|
],
|
2025-11-04 10:07:50 +01:00
|
|
|
'-',
|
|
|
|
|
'users'
|
2025-11-04 09:05:55 +01:00
|
|
|
];
|