starlinks/application/configs/menu.config.php

29 lines
749 B
PHP
Raw Normal View History

2015-09-29 12:09:23 +02:00
<?php
return array(
2015-09-29 18:59:45 +02:00
array(
'label'=> "Prestations",
'title' => "",
'controller' => 'index',
'action' => 'index',
'pages' => array(
array(
'label' => "Résumé",
'title' => 'Listes de vos prestations',
'controller' => 'presta',
'action' => 'index',
),
array(
'label' => "Fichiers",
'title' => 'Listes de vos fichiers',
'controller' => 'presta',
'action' => 'files',
),
),
),
array(
'label'=> "Contact",
'title' => "Contact",
'controller' => 'contact',
'action' => 'index',
),
2015-09-29 12:09:23 +02:00
);