2024-01-26 07:45:41 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
2024-01-26 13:42:00 +01:00
|
|
|
'debug' => true,
|
|
|
|
|
'panel' => [
|
|
|
|
|
'menu' => [
|
|
|
|
|
'site' => [
|
|
|
|
|
'label' => 'Accueil',
|
|
|
|
|
'current' => function ($current) {
|
|
|
|
|
$path = Kirby::instance()->request()->path()->toString();
|
|
|
|
|
return Str::contains($path, 'site');
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
'articles' => [
|
|
|
|
|
'icon' => 'folder',
|
|
|
|
|
'label' => 'Articles',
|
|
|
|
|
'link' => 'pages/articles',
|
|
|
|
|
'current' => function ($current) {
|
|
|
|
|
$path = Kirby::instance()->request()->path()->toString();
|
|
|
|
|
return Str::contains($path, 'pages/articles');
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
'-',
|
|
|
|
|
'users',
|
|
|
|
|
'system'
|
|
|
|
|
]
|
|
|
|
|
]
|
2024-01-26 07:45:41 +01:00
|
|
|
];
|