58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<?php
|
|
return array(
|
|
array(
|
|
'label'=> "Accueil",
|
|
'controller' => 'index',
|
|
'action' => 'index',
|
|
'pages' => array(),
|
|
),
|
|
array(
|
|
'label'=> "Documentation",
|
|
'controller' => 'documentation',
|
|
'action' => 'index',
|
|
'pages' => array(
|
|
array(
|
|
'label'=> "Information générale",
|
|
'controller' => 'documentation',
|
|
'action' => 'index',
|
|
'pages' => array(),
|
|
),
|
|
array(
|
|
'uri' => '#',
|
|
),
|
|
array(
|
|
'label'=> "Liste des services",
|
|
'controller' => 'documentation',
|
|
'action' => 'services',
|
|
'pages' => array(),
|
|
),
|
|
array(
|
|
'uri' => '#',
|
|
),
|
|
),
|
|
),
|
|
array(
|
|
'label'=> "Démonstration",
|
|
'controller' => 'demo',
|
|
'action' => 'index',
|
|
'pages' => array(),
|
|
),
|
|
array(
|
|
'label'=> "Contact",
|
|
'controller' => 'index',
|
|
'action' => 'contact',
|
|
'pages' => array(),
|
|
),
|
|
array(
|
|
'label'=> "Paramètres",
|
|
'controller' => 'user',
|
|
'action' => 'params',
|
|
'pages' => array(),
|
|
),
|
|
array(
|
|
'label'=> "A propos",
|
|
'controller' => 'index',
|
|
'action' => 'about',
|
|
'pages' => array(),
|
|
),
|
|
); |