]> git.llucax.com Git - mecon/samurai.git/blob - sistema/conf/confSecciones.php
Se corrige bug.
[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             'imagenMouseOn' => '',            
52             'imagenSelect'  => '',            
53             'link'          => 'usuarios/usuarios',    
54 //            'permisos'      => SAMURAI_ALTA_USUARIO,
55             'permisos'      => array (SAMURAI_ALTA_USUARIO,
56                                       SAMURAI_BAJA_USUARIO,
57                                       SAMURAI_MODI_USUARIO
58                                ),
59             'tipoMenu'      => 'oculto',   
60             'hijos'         => array (       
61                                     array ( 'nombre'        => 'ABM Usuario',       
62                                             'imagenComun'   => '',      
63                                             'imagenMouseOn' => '',                  
64                                             'imagenSelect'  => '',                  
65                                             'link'          => 'usuarios/usuarios-abm',      
66                                     ),
67                                 ),
68         ),
69         //}}}
70         //PERFILES {{{
71         array (
72             'nombre'        => 'Perfiles',    
73             'imagenComun'   => 'perfiles.gif',    
74             'imagenMouseOn' => '',            
75             'imagenSelect'  => '',            
76             'link'          => 'perfiles/perfiles',    
77             'permisos'      => array (SAMURAI_ALTA_PERFIL,
78                                       SAMURAI_BAJA_PERFIL,
79                                       SAMURAI_MODI_PERFIL
80                                ),
81             'tipoMenu'      => 'oculto',    
82             'hijos'         => array (       
83                                     array ( 'nombre'        => 'Nuevo Perfil',   
84                                             'imagenComun'   => '',  
85                                             'imagenMouseOn' => '',                  
86                                             'imagenSelect'  => '',                  
87                                             'link'          => 'perfiles/perfiles-nuevo',  
88                                     ),
89                                     array ( 'nombre'        => 'ABM Perfil',   
90                                             'imagenComun'   => '',  
91                                             'imagenMouseOn' => '',                  
92                                             'imagenSelect'  => '',                  
93                                             'link'          => 'perfiles/perfiles-abm',  
94                                     ),
95                                 ),
96         ),
97         //}}}
98         //CONSULTAS {{{
99         array (
100             'nombre'        => 'consultas',    
101             'imagenComun'   => 'general_consultas.gif',    
102             'imagenMouseOn' => '',            
103             'imagenSelect'  => '',            
104             'link'          => 'consultas',    
105             'tipoMenu'      => 'oculto',    
106             'permisos'      => array (SAMURAI_DEVELOPER),
107             'hijos'         => array (       
108                                     array ( 'nombre'        => 'Consultas Usuarios',   
109                                             'imagenComun'   => '',  
110                                             'imagenMouseOn' => '',                  
111                                             'imagenSelect'  => '',                  
112                                             'link'          => 'consultas-usuario',  
113                                             'subhijos'      => array (  'sarasa3',
114                                                                ),
115                                     ),
116                                 ),
117         ),
118         //}}}
119         //SISTEMAS {{{ 
120         array (
121             'nombre'        => 'Sistemas',    
122             'imagenComun'   => 'general_sistemas.gif',    
123             'imagenMouseOn' => '',            
124             'imagenSelect'  => '',            
125             'link'          => 'sistemas/sistemas',    
126             'tipoMenu'      => 'oculto',    
127             'permisos'      => array (SAMURAI_DEVELOPER),
128             'hijos'         => array (       
129                                     array ( 'nombre'        => 'ABM Sistemas',   
130                                             'imagenComun'   => '',  
131                                             'imagenMouseOn' => '',                  
132                                             'imagenSelect'  => '',                  
133                                             'link'          => 'sistemas/sistemas-abm',  
134                                     ),
135                                     array ( 'nombre'        => 'Definir Permisos',   
136                                             'imagenComun'   => '',  
137                                             'imagenMouseOn' => '',                  
138                                             'imagenSelect'  => '',                  
139                                             'link'          => 'sistemas/sistemas-permisos',  
140                                     ),
141                                     array ( 'nombre'        => 'ABM Asociacion',   
142                                             'imagenComun'   => '',  
143                                             'imagenMouseOn' => '',                  
144                                             'imagenSelect'  => '',                  
145                                             'link'          => 'sistemas/sistemas-permisos-abm',  
146                                     ),
147                                 ),
148         ),
149         //}}}
150         //PERMISOS {{{
151         array (
152             'nombre'        => 'Permisos',    
153             'imagenComun'   => 'permisos.gif',    
154             'imagenMouseOn' => '',            
155             'imagenSelect'  => '',            
156             'link'          => 'permisos/permisos',    
157             'tipoMenu'      => 'oculto',    
158             'permisos'      => array (SAMURAI_DEVELOPER),
159             'hijos'         => array (       
160                                     array ( 'nombre'        => 'ABM Permisos',   
161                                             'imagenComun'   => '',  
162                                             'imagenMouseOn' => '',                  
163                                             'imagenSelect'  => '',                  
164                                             'link'          => 'permisos/permisos-abm',  
165                                     ),
166                                 ),
167         ),
168         //}}}
169     ),
170         //}}}
171 );     
172 ?>