X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/f1aa090b799725c9ec8f28a91f873dfc15f08dfb..ee6f4c88016bc8938dc047036965dc937e68584c:/marco/test/prueba/conf/confSecciones.php?ds=sidebyside diff --git a/marco/test/prueba/conf/confSecciones.php b/marco/test/prueba/conf/confSecciones.php index aa5fab6..7e9acde 100644 --- a/marco/test/prueba/conf/confSecciones.php +++ b/marco/test/prueba/conf/confSecciones.php @@ -32,23 +32,34 @@ * * Basado en datos.epl de Gonzalo Merayo * + * imagenMouseOn puede estar vacia, en ese caso se asume imagenComun_f2 + * imagenSelect puede estar vacia, en ese caso se asume imagenComun_f3 + * * thu apr 15 15:25:10 ART 2003 */ return array ( // SECCION 1 {{{ + // LAS UNICAS CLAVES OBLIGATORIAS SON NOMBRE, IMAGENCOMUN Y LINK array ( - 'nombre' => 'Usuarios', //NOMBRE DE LA SECCION - 'img_comun' => 'usuarios.gif', //IMAGEN COMUN - 'img_mouseon' => 'usuarios_f2.gif', //IMAGEN MOUSE POR ARRIBA - 'img_select' => 'usuarios_f3.gif', //IMAGEN SELECCIONADO - 'link' => 'usuarios.php', //LINK DE LA SECCION - 'hijos' => array ( - array ( 'nombre'=> 'Filtrar Usuario', //NOMBRE DEL HIJO - 'link' => 'usuarios-filtrar.php', //LINK DEL HIJO + 'nombre' => 'Usuarios', //NOMBRE DE LA SECCION + 'imagenComun' => 'usuario', //IMAGEN COMUN + 'imagenMouseOn' => '', // + 'imagenSelect' => '', // + 'link' => 'usuarios', //LINK DE LA SECCION + 'tipoMenu' => 'oculto', //TIPO DEL MENU DE HIJOS (vertical, horizontal, oculto) + 'hijos' => array ( //HIJOS PARA EL MENU + array ( 'nombre' => 'Filtrar Usuario', //NOMBRE DEL HIJO 1 + 'imagenComun' => 'usuarios-filtar', //IMAGEN COMUN + 'imagenMouseOn' => '', // + 'imagenSelect' => '', // + 'link' => 'usuarios-filtrar', //LINK DEL HIJO ), - array ( 'nombre'=> 'ABM Usuario', //NOMBRE DEL HIJO - 'link' => 'usuarios-abm.php', //LINK DEL HIJO + array ( 'nombre' => 'ABM Usuario', //NOMBRE DEL HIJO 2 + 'imagenComun' => 'usuarios-abm', //IMAGEN COMUN + 'imagenMouseOn' => '', // + 'imagenSelect' => '', // + 'link' => 'usuarios-abm', //LINK DEL HIJO ), ), ),