actuel-inactuel/site/config/config.php

47 lines
1.2 KiB
PHP
Raw Normal View History

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' => [
2024-03-09 11:27:10 +01:00
'icon' => 'pen',
2024-01-26 13:42:00 +01:00
'label' => 'Articles',
'link' => 'pages/articles',
'current' => function ($current) {
$path = Kirby::instance()->request()->path()->toString();
return Str::contains($path, 'pages/articles');
}
],
'-',
2024-03-09 11:27:10 +01:00
'infos' => [
'icon' => 'question',
'label' => 'À propos',
'link' => 'pages/a-propos',
'current' => function ($current) {
$path = Kirby::instance()->request()->path()->toString();
return Str::contains($path, 'pages/a-propos');
}
],
'newsletter' => [
'icon' => 'email',
'label' => 'Lettre',
'link' => 'pages/lettre',
'current' => function ($current) {
$path = Kirby::instance()->request()->path()->toString();
return Str::contains($path, 'pages/lettre');
}
],
'-',
2024-01-26 13:42:00 +01:00
'users',
'system'
]
]
2024-01-26 07:45:41 +01:00
];