index-main/site/config/menu.php

24 lines
583 B
PHP
Raw Normal View History

2025-11-04 09:05:55 +01:00
<?php
return [
'home' => [
'label' => 'Soutien',
'icon' => 'money',
'link' => 'pages/soutien',
2025-11-04 09:05:55 +01:00
'current' => function ($current) {
$path = Kirby::instance()->request()->path()->toString();
return Str::contains($path, 'pages/soutien');
2025-11-04 09:05:55 +01:00
},
],
'shop' => [
'label' => 'Boutique',
'icon' => 'cart',
'link' => 'pages/boutique',
'current' => function ($current) {
$path = Kirby::instance()->request()->path()->toString();
return Str::contains($path, 'pages/boutique');
},
],
2025-11-04 10:07:50 +01:00
'-',
'users'
2025-11-04 09:05:55 +01:00
];