X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/3c702b40a1806798e475c48abb456e5a9c2dac72..bcca0c17730ae290fdbdfe15f506354c1acd6c07:/sistema/conf/confSecciones.php diff --git a/sistema/conf/confSecciones.php b/sistema/conf/confSecciones.php index afb45b1..0f42d8a 100644 --- a/sistema/conf/confSecciones.php +++ b/sistema/conf/confSecciones.php @@ -27,8 +27,9 @@ //SAMURAI {{{ 'titulo_sistema' => 'SAMURAI', 'pie_sistema' => 'Samurai', - 'id_sistema' => '1', + 'id_sistema' => SAMURAI_PERM, //}}} +//DIRECTORIOS {{{ //Directorios web del sistema, salvo el root, todos son opcionales //Si no se ponen, o estan vacias se asume lo que dice el comentario al lado de cada una 'directorios' => array ( 'root' => '/sistemas/samurai', // obligatorio @@ -40,105 +41,102 @@ //Directorios del file system. Si no se pone se asume lo que esta comentado. Son opcionales 'directorios_fs' => array ('cache' => '', // /tmp ), +//}}} +//SECCIONES {{{ 'secciones' => array ( - - //SECCIONES VISIBLES POR TODOS LOS USUARIOS + //USUARIOS {{{ array ( 'nombre' => 'Usuarios', 'imagenComun' => 'usuarios.gif', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'usuarios/usuarios', + 'permisos' => array (SAMURAI_PERM_USUARIO_ALTA, + SAMURAI_PERM_USUARIO_BAJA, + SAMURAI_PERM_USUARIO_MODIF + ), 'tipoMenu' => 'oculto', - 'hijos' => array ( + 'hijos' => array ( array ( 'nombre' => 'ABM Usuario', - 'imagenComun' => '', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'usuarios/usuarios-abm', ), ), ), + //}}} + //PERFILES {{{ array ( 'nombre' => 'Perfiles', 'imagenComun' => 'perfiles.gif', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'perfiles/perfiles', + 'permisos' => array (SAMURAI_PERM_PERFIL_ALTA, + SAMURAI_PERM_PERFIL_BAJA, + SAMURAI_PERM_PERFIL_MODIF + ), 'tipoMenu' => 'oculto', - 'hijos' => array ( + 'hijos' => array ( array ( 'nombre' => 'Nuevo Perfil', - 'imagenComun' => '', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'perfiles/perfiles-nuevo', ), array ( 'nombre' => 'ABM Perfil', - 'imagenComun' => '', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'perfiles/perfiles-abm', ), ), ), + //}}} + //CONSULTAS {{{ array ( - 'nombre' => 'consultas', + 'nombre' => 'Consultas', 'imagenComun' => 'general_consultas.gif', - 'imagenMouseOn' => '', - 'imagenSelect' => '', - 'link' => 'consultas', + 'link' => 'consultas/consultas', 'tipoMenu' => 'oculto', - 'hijos' => array ( - array ( 'nombre' => 'Consultas Usuarios', - 'imagenComun' => '', - 'imagenMouseOn' => '', - 'imagenSelect' => '', - 'link' => 'consultas-usuario', - 'subhijos' => array ( 'sarasa3', - ), + 'permisos' => array (SAMURAI_PERM_DEVELOPER), + 'hijos' => array ( + array ( 'nombre' => 'Definicion de Constantes', + 'link' => 'consultas/php-constantes', ), - ), + array ( 'nombre' => 'Sistemas', + 'link' => 'consultas/sistemas', + ), + array ( 'nombre' => 'Usuarios', + 'link' => 'consultas/usuarios', + ), + + ), ), - //SECCIONES VISIBLES POR LOS DESARROLLADORES + //}}} + //SISTEMAS {{{ array ( 'nombre' => 'Sistemas', 'imagenComun' => 'general_sistemas.gif', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'sistemas/sistemas', 'tipoMenu' => 'oculto', - 'hijos' => array ( + 'permisos' => array (SAMURAI_PERM_DEVELOPER), + 'hijos' => array ( array ( 'nombre' => 'ABM Sistemas', - 'imagenComun' => '', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'sistemas/sistemas-abm', ), array ( 'nombre' => 'Definir Permisos', - 'imagenComun' => '', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'sistemas/sistemas-permisos', ), + array ( 'nombre' => 'ABM Asociacion', + 'link' => 'sistemas/sistemas-permisos-abm', + ), ), ), + //}}} + //PERMISOS {{{ array ( 'nombre' => 'Permisos', 'imagenComun' => 'permisos.gif', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'permisos/permisos', 'tipoMenu' => 'oculto', - 'hijos' => array ( + 'permisos' => array (SAMURAI_PERM_DEVELOPER), + 'hijos' => array ( array ( 'nombre' => 'ABM Permisos', - 'imagenComun' => '', - 'imagenMouseOn' => '', - 'imagenSelect' => '', 'link' => 'permisos/permisos-abm', ), ), - ), ), - ); - + //}}} + ), + //}}} +); ?>