37 lines
No EOL
848 B
PHP
37 lines
No EOL
848 B
PHP
<?php
|
|
|
|
return [
|
|
'dashboard' => [
|
|
'label' => 'Dashboard',
|
|
'icon' => 'bolt',
|
|
'link' => '/',
|
|
'current' => function (string $current): bool {
|
|
$path = Kirby\Cms\App::instance()->path();
|
|
return Str::contains($path, '/site');
|
|
}
|
|
],
|
|
'-',
|
|
'home' => [
|
|
'label' => 'Accueil',
|
|
'icon' => 'home',
|
|
'link' => 'pages/home',
|
|
'current' => function (string $current): bool {
|
|
$path = Kirby\Cms\App::instance()->path();
|
|
return Str::contains($path, 'pages/home');
|
|
}
|
|
],
|
|
'-'
|
|
,
|
|
'database' => [
|
|
'label' => 'Bases de données',
|
|
'icon' => 'table',
|
|
'link' => 'pages/database',
|
|
'current' => function (string $current): bool {
|
|
$path = Kirby\Cms\App::instance()->path();
|
|
return Str::contains($path, 'pages/database');
|
|
}
|
|
],
|
|
'-',
|
|
'-',
|
|
'users'
|
|
]; |