X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/2f3b8ae4b5ca4ae5be36071825afd8449b1080f8..c3b42bba0c46c9510b6ca095dfab862ff97170e6:/test/Marco/prueba/conf/confSecciones.php diff --git a/test/Marco/prueba/conf/confSecciones.php b/test/Marco/prueba/conf/confSecciones.php index 7de687a..3a2b3ec 100644 --- a/test/Marco/prueba/conf/confSecciones.php +++ b/test/Marco/prueba/conf/confSecciones.php @@ -39,28 +39,31 @@ */ return array ( - //Directorios del sistema, salvo el root, todos son opcionales + //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' => 'www/sistemas/prueba/www', //obligatorio - 'imagenes' => 'www/sistemas/prueba/www/images', //www/sistema//www/images - 'estilos' => '', //www/sistema//www/css - 'js' => '', //www/sistema//www/js - ), - 'titulo_sistema' = 'Prueba del Objeto Marco', - 'pie_sistema' = 'Prueba Objeto Marco - Ministerio de Economia' - 'secciones' = array ( + 'directorios' => array ('root' => '/sistemas/prueba_samurai', // obligatorio + 'imagenes' => '', // /www/images + 'estilos' => '', // /www/css + 'js' => '', // /www/js + 'www' => '', // /www/ + ), + //Directorios del file system. Si no se pone se asume lo que esta comentado. Son opcionales + 'directorios_fs' => array ('cache' => '', // /tmp + ), + 'titulo_sistema' => 'Prueba del Objeto Marco', + 'secciones' => array ( // SECCION 1 {{{ // LAS UNICAS CLAVES OBLIGATORIAS SON NOMBRE, IMAGENCOMUN Y LINK array ( 'nombre' => 'Usuarios', //NOMBRE DE LA SECCION - 'imagenComun' => 'usuarios', //IMAGEN COMUN + 'imagenComun' => 'usuarios.gif', //IMAGEN COMUN 'imagenMouseOn' => '', // 'imagenSelect' => '', // 'link' => 'usuarios', //LINK DE LA SECCION - 'tipoMenu' => 'vertical', //TIPO DEL MENU DE HIJOS (vertical, horizontal, oculto) + 'tipoMenu' => 'horizontal', //TIPO DEL MENU DE HIJOS (vertical, horizontal, oculto) 'hijos' => array ( //HIJOS PARA EL MENU array ( 'nombre' => 'Filtrar Usuario', //NOMBRE DEL HIJO 1 - 'imagenComun' => 'usuarios-filtrar', //IMAGEN COMUN + 'imagenComun' => 'usuarios-filtrar.gif', //IMAGEN COMUN 'imagenMouseOn' => '', // 'imagenSelect' => '', // 'link' => 'usuarios-filtrar', //LINK DEL HIJO @@ -71,33 +74,59 @@ ), ), array ( 'nombre' => 'ABM Usuario', //NOMBRE DEL HIJO 2 - 'imagenComun' => 'usuarios-abm', //IMAGEN COMUN + 'imagenComun' => 'usuarios-abm.gif', //IMAGEN COMUN 'imagenMouseOn' => '', // 'imagenSelect' => '', // 'link' => 'usuarios-abm', //LINK DEL HIJO ), ), + ), // }}} FIN SECCION 1 // SECCION 2 {{{ // LAS UNICAS CLAVES OBLIGATORIAS SON NOMBRE, IMAGENCOMUN Y LINK array ( 'nombre' => 'Perfiles', //NOMBRE DE LA SECCION - 'imagenComun' => 'perfiles', //IMAGEN COMUN + 'imagenComun' => 'perfiles.gif', //IMAGEN COMUN 'imagenMouseOn' => '', // 'imagenSelect' => '', // 'link' => 'perfiles', //LINK DE LA SECCION 'tipoMenu' => 'vertical', //TIPO DEL MENU DE HIJOS (vertical, horizontal, oculto) 'hijos' => array ( //HIJOS PARA EL MENU array ( 'nombre' => 'Perfiles - Hijo', //NOMBRE DEL HIJO 1 - 'imagenComun' => 'perfiles-nionio', //IMAGEN COMUN + 'imagenComun' => 'perfiles-nionio.gif', //IMAGEN COMUN 'imagenMouseOn' => '', // 'imagenSelect' => '', // 'link' => 'perfiles-hijo', //LINK DEL HIJO ), ), + ), // }}} FIN SECCION 2 + //SECCION SAMURAI USUARIO {{{ + array ( + 'nombre' => 'Administracion', //NOMBRE DE LA SECCION + 'imagenComun' => 'general_admin.gif', //IMAGEN COMUN + 'imagenMouseOn' => '', // + 'imagenSelect' => '', // + 'link' => 'samurai_perfiles', //LINK DE LA SECCION + 'tipoMenu' => 'horizontal', //TIPO DEL MENU DE HIJOS (vertical, horizontal, oculto) + 'hijos' => array ( //HIJOS PARA EL MENU + array ( + 'nombre' => 'Administracion Perfiles', + 'link' => 'samurai_perfiles', + 'imagenComun' => 'samurai_perfiles.gif', //IMAGEN COMUN + 'permisos' => array (58, 59, 60), + ), + array ( + 'nombre' => 'Administracion Usuarios', + 'link' => 'samurai_usuarios', + 'imagenComun' => 'samurai_usuarios.gif', //IMAGEN COMUN + 'permisos' => array (61, 62, 63), + ), + ), + ), + //}}} ), );