]> git.llucax.com Git - mecon/samurai.git/blob - sistema/conf/confSecciones.php
08cbd139bdcfb2d120fd6ccb90ae2d97507a770f
[mecon/samurai.git] / sistema / conf / confSecciones.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: thu apr 15 15:22:58 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //  
26     return array (
27 //SAMURAI {{{
28         'titulo_sistema'    => 'SAMURAI',
29         'pie_sistema'       => 'Samurai',
30         'id_sistema'        => '44',
31 //}}}
32 //DIRECTORIOS {{{
33         //Directorios web del sistema, salvo el root, todos son opcionales
34         //Si no se ponen, o estan vacias se asume lo que dice el comentario al lado de cada una
35         'directorios'       => array (  'root'     => '/sistemas/samurai',              // obligatorio
36 //                                        'imagenes' => '/sistemas/samurai/www/images',   // <root>/images
37                                         'estilos'  => '',                                  // <root>/css
38                                         'js'       => '',                                  // <root>/js
39                                         'www'      => '',                                  // <root>/
40                                 ),
41         //Directorios del file system. Si no se pone se asume lo que esta comentado. Son opcionales
42         'directorios_fs'    => array ('cache'    => '',                                  // /tmp
43                                 ),
44 //}}}
45 //SECCIONES {{{    
46         'secciones'         => array (
47         //USUARIOS {{{ 
48         array (
49             'nombre'        => 'Usuarios',    
50             'imagenComun'   => 'usuarios.gif',    
51             'link'          => 'usuarios/usuarios',    
52             'permisos'      => array (SAMURAI_ALTA_USUARIO,
53                                       SAMURAI_BAJA_USUARIO,
54                                       SAMURAI_MODI_USUARIO
55                                ),
56             'tipoMenu'      => 'oculto',   
57             'hijos'         => array (       
58                                     array ( 'nombre'        => 'ABM Usuario',       
59                                             'link'          => 'usuarios/usuarios-abm',      
60                                     ),
61                                 ),
62         ),
63         //}}}
64         //PERFILES {{{
65         array (
66             'nombre'        => 'Perfiles',    
67             'imagenComun'   => 'perfiles.gif',    
68             'link'          => 'perfiles/perfiles',    
69             'permisos'      => array (SAMURAI_ALTA_PERFIL,
70                                       SAMURAI_BAJA_PERFIL,
71                                       SAMURAI_MODI_PERFIL
72                                ),
73             'tipoMenu'      => 'oculto',    
74             'hijos'         => array (       
75                                     array ( 'nombre'        => 'Nuevo Perfil',   
76                                             'link'          => 'perfiles/perfiles-nuevo',  
77                                     ),
78                                     array ( 'nombre'        => 'ABM Perfil',   
79                                             'link'          => 'perfiles/perfiles-abm',  
80                                     ),
81                                 ),
82         ),
83         //}}}
84         //CONSULTAS {{{
85         array (
86             'nombre'        => 'Consultas',    
87             'imagenComun'   => 'general_consultas.gif',    
88             'link'          => 'consultas/consultas',    
89             'tipoMenu'      => 'oculto',    
90             'permisos'      => array (SAMURAI_DEVELOPER),
91             'hijos'         => array (       
92                                     array ( 'nombre'        => 'Definicion de Constantes',   
93                                             'link'          => 'consultas/php-constantes',  
94                                     ),
95                                ),
96         ),
97         //}}}
98         //SISTEMAS {{{ 
99         array (
100             'nombre'        => 'Sistemas',    
101             'imagenComun'   => 'general_sistemas.gif',    
102             'link'          => 'sistemas/sistemas',    
103             'tipoMenu'      => 'oculto',    
104             'permisos'      => array (SAMURAI_DEVELOPER),
105             'hijos'         => array (       
106                                     array ( 'nombre'        => 'ABM Sistemas',   
107                                             'link'          => 'sistemas/sistemas-abm',  
108                                     ),
109                                     array ( 'nombre'        => 'Definir Permisos',   
110                                             'link'          => 'sistemas/sistemas-permisos',  
111                                     ),
112                                     array ( 'nombre'        => 'ABM Asociacion',   
113                                             'link'          => 'sistemas/sistemas-permisos-abm',  
114                                     ),
115                                 ),
116         ),
117         //}}}
118         //PERMISOS {{{
119         array (
120             'nombre'        => 'Permisos',    
121             'imagenComun'   => 'permisos.gif',    
122             'link'          => 'permisos/permisos',    
123             'tipoMenu'      => 'oculto',    
124             'permisos'      => array (SAMURAI_DEVELOPER),
125             'hijos'         => array (       
126                                     array ( 'nombre'        => 'ABM Permisos',   
127                                             'link'          => 'permisos/permisos-abm',  
128                                     ),
129                                 ),
130         ),
131         //}}}
132     ),
133         //}}}
134 );     
135 ?>