]> git.llucax.com Git - mecon/samurai.git/blob - sistema/conf/confSecciones.php
En desarrollo la consulta de usuarios
[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'        => SAMURAI_PERM,
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_PERM_USUARIO_ALTA,
53                                       SAMURAI_PERM_USUARIO_BAJA,
54                                       SAMURAI_PERM_USUARIO_MODIF
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_PERM_PERFIL_ALTA,
70                                       SAMURAI_PERM_PERFIL_BAJA,
71                                       SAMURAI_PERM_PERFIL_MODIF
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_PERM_DEVELOPER),
91             'hijos'         => array (       
92                                     array ( 'nombre'   => 'Definicion de Constantes',   
93                                             'link'     => 'consultas/php-constantes',  
94                                     ),
95                                     array ( 'nombre'   => 'Sistemas',   
96                                             'link'     => 'consultas/sistemas',  
97                                     ),
98                                     array ( 'nombre'   => 'Usuarios',   
99                                             'link'     => 'consultas/usuarios',  
100                                     ),
101
102                                ),
103         ),
104         //}}}
105         //SISTEMAS {{{ 
106         array (
107             'nombre'        => 'Sistemas',    
108             'imagenComun'   => 'general_sistemas.gif',    
109             'link'          => 'sistemas/sistemas',    
110             'tipoMenu'      => 'oculto',    
111             'permisos'      => array (SAMURAI_PERM_DEVELOPER),
112             'hijos'         => array (       
113                                     array ( 'nombre'        => 'ABM Sistemas',   
114                                             'link'          => 'sistemas/sistemas-abm',  
115                                     ),
116                                     array ( 'nombre'        => 'Definir Permisos',   
117                                             'link'          => 'sistemas/sistemas-permisos',  
118                                     ),
119                                     array ( 'nombre'        => 'ABM Asociacion',   
120                                             'link'          => 'sistemas/sistemas-permisos-abm',  
121                                     ),
122                                 ),
123         ),
124         //}}}
125         //PERMISOS {{{
126         array (
127             'nombre'        => 'Permisos',    
128             'imagenComun'   => 'permisos.gif',    
129             'link'          => 'permisos/permisos',    
130             'tipoMenu'      => 'oculto',    
131             'permisos'      => array (SAMURAI_PERM_DEVELOPER),
132             'hijos'         => array (       
133                                     array ( 'nombre'        => 'ABM Permisos',   
134                                             'link'          => 'permisos/permisos-abm',  
135                                     ),
136                                 ),
137         ),
138         //}}}
139     ),
140         //}}}
141 );     
142 ?>