lots of small improvements, new pages, added htaccess for url rewriting
This commit is contained in:
39
includes/_config.php
Normal file
39
includes/_config.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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'];
|
||||
Reference in New Issue
Block a user