15 lines
No EOL
282 B
PHP
15 lines
No EOL
282 B
PHP
<?php
|
|
|
|
return [
|
|
'home' => [
|
|
'label' => 'Dashboard',
|
|
'icon' => 'bolt',
|
|
'link' => '/',
|
|
'current' => function (string $current): bool {
|
|
$path = Kirby\Cms\App::instance()->path();
|
|
return Str::contains($path, '/site');
|
|
}
|
|
],
|
|
'-',
|
|
'users'
|
|
]; |