1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
<?php
// src/Config/navigation.php
/**
* Configurazione completa del sistema di navigazione
*/
return [
'main_menu' => [
'home' => [
'label' => 'Home',
'url' => '/',
'icon' => 'fas fa-home',
'permissions' => ['public'],
'meta' => [
'title' => 'Homepage - Il nostro sito',
'description' => 'Benvenuto nella homepage'
]
],
'products' => [
'label' => 'Prodotti',
'url' => '/products',
'icon' => 'fas fa-box',
'permissions' => ['public'],
'children' => [
'category_a' => [
'label' => 'Categoria A',
'url' => '/products/category-a',
'permissions' => ['public']
],
'category_b' => [
'label' => 'Categoria B',
'url' => '/products/category-b',
'permissions' => ['public']
]
]
],
'services' => [
'label' => 'Servizi',
'url' => '/services',
'icon' => 'fas fa-cogs',
'permissions' => ['public'],
'children' => [
'consulting' => [
'label' => 'Consulenza',
'url' => '/services/consulting',
'permissions' => ['public']
],
'support' => [
'label' => 'Supporto',
'url' => '/services/support',
'permissions' => ['authenticated']
]
]
],
'admin' => [
'label' => 'Amministrazione',
'url' => '/admin',
'icon' => 'fas fa-cog',
'permissions' => ['admin', 'manager'],
'children' => [
'users' => [
'label' => 'Utenti',
'url' => '/admin/users',
'permissions' => ['admin']
],
'settings' => [
'label' => 'Impostazioni',
'url' => '/admin/settings',
'permissions' => ['admin', 'manager']
],
'reports' => [
'label' => 'Report',
'url' => '/admin/reports',
'permissions' => ['admin', 'manager', 'analyst']
]
]
]
],
'sidebar_menu' => [
'dashboard' => [
'label' => 'Dashboard',
'url' => '/dashboard',
'icon' => 'fas fa-tachometer-alt',
'permissions' => ['authenticated']
],
'profile' => [
'label' => 'Profilo',
'url' => '/profile',
'icon' => 'fas fa-user',
'permissions' => ['authenticated']
]
],
'footer_menu' => [
'about' => [
'label' => 'Chi Siamo',
'url' => '/about',
'permissions' => ['public']
],
'contact' => [
'label' => 'Contatti',
'url' => '/contact',
'permissions' => ['public']
],
'privacy' => [
'label' => 'Privacy Policy',
'url' => '/privacy',
'permissions' => ['public']
]
],
'settings' => [
'cache_enabled' => true,
'cache_duration' => 3600, // 1 ora
'highlight_current' => true,
'generate_breadcrumbs' => true,
'seo_optimization' => true,
'accessibility_mode' => true
]
];
|