actuel-inactuel/site/config/config.php
2024-01-26 13:42:00 +01:00

28 lines
No EOL
648 B
PHP

<?php
return [
'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'
]
]
];