You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
794 B
40 lines
794 B
<?php
|
|
$pages = Array(
|
|
'index' => Array(
|
|
'key' => 'index',
|
|
'name' => 'Accueil'
|
|
),
|
|
'solutions' => Array(
|
|
'key' => 'solutions',
|
|
'name' => 'Solutions'
|
|
),
|
|
'cgu' => Array(
|
|
'key' => 'cgu',
|
|
'name' => 'C.G.U.'
|
|
),
|
|
'interventions' => Array(
|
|
'key' => 'interventions',
|
|
'name' => 'Interventions'
|
|
),
|
|
'faq' => Array(
|
|
'key' => 'faq',
|
|
'name' => 'F.A.Q.'
|
|
),
|
|
'aide' => Array(
|
|
'key' => 'aide',
|
|
'name' => 'Aide'
|
|
),
|
|
'contact' => Array(
|
|
'key' => 'contact',
|
|
'name' => 'Contact'
|
|
));
|
|
|
|
$mainMenu = Array(
|
|
0 => $pages['index'],
|
|
1 => $pages['solutions'],
|
|
2 => $pages['cgu'],
|
|
3 => $pages['interventions']
|
|
);
|
|
|
|
$currentPage = $pages['index'];
|