24 lines
No EOL
582 B
PHP
24 lines
No EOL
582 B
PHP
<?php
|
|
|
|
return [
|
|
'home' => [
|
|
'label' => 'Soutien',
|
|
'icon' => 'home',
|
|
'link' => 'pages/soutien',
|
|
'current' => function ($current) {
|
|
$path = Kirby::instance()->request()->path()->toString();
|
|
return Str::contains($path, 'pages/soutien');
|
|
},
|
|
],
|
|
'shop' => [
|
|
'label' => 'Boutique',
|
|
'icon' => 'cart',
|
|
'link' => 'pages/boutique',
|
|
'current' => function ($current) {
|
|
$path = Kirby::instance()->request()->path()->toString();
|
|
return Str::contains($path, 'pages/boutique');
|
|
},
|
|
],
|
|
'-',
|
|
'users'
|
|
]; |