70 lines
No EOL
1.8 KiB
PHP
70 lines
No EOL
1.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Debug mode (désactiver en production)
|
|
'debug' => true,
|
|
|
|
// Panel configuration
|
|
'panel' => [
|
|
'css' => 'assets/css/custom-panel.css',
|
|
// Menu personnalisé du panel
|
|
'menu' => [
|
|
'site' => [
|
|
'label' => 'Site',
|
|
'icon' => 'home',
|
|
'current' => function (string $current): bool {
|
|
return $current === 'site';
|
|
}
|
|
],
|
|
'-', // Séparateur
|
|
'home' => [
|
|
'label' => 'Accueil',
|
|
'icon' => 'home',
|
|
'link' => 'pages/home',
|
|
],
|
|
'expertise' => [
|
|
'label' => 'Expertise',
|
|
'icon' => 'wand',
|
|
'link' => 'pages/expertise',
|
|
],
|
|
'portfolio' => [
|
|
'label' => 'Portfolio',
|
|
'icon' => 'images',
|
|
'link' => 'pages/portfolio',
|
|
],
|
|
'jouer' => [
|
|
'label' => 'Jouer',
|
|
'icon' => 'play',
|
|
'link' => 'pages/jouer',
|
|
],
|
|
'a-propos' => [
|
|
'label' => 'À propos',
|
|
'icon' => 'users',
|
|
'link' => 'pages/a-propos',
|
|
],
|
|
'blog' => [
|
|
'label' => 'Blog',
|
|
'icon' => 'text',
|
|
'link' => 'pages/blog',
|
|
],
|
|
'-', // Séparateur
|
|
'users',
|
|
'system'
|
|
]
|
|
],
|
|
|
|
// Langues
|
|
'languages' => true,
|
|
|
|
// Thumbs
|
|
'thumbs' => [
|
|
'srcsets' => [
|
|
'default' => [
|
|
'300w' => ['width' => 300],
|
|
'600w' => ['width' => 600],
|
|
'900w' => ['width' => 900],
|
|
'1200w' => ['width' => 1200]
|
|
]
|
|
]
|
|
],
|
|
]; |