]> git.llucax.com Git - mecon/meconlib.git/blob - test/Marco/prueba/conf/confSecciones.php
- Cambio en el constructor de Marco.
[mecon/meconlib.git] / test / Marco / prueba / conf / confSecciones.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
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     
27     /** ARCHIVO DE CONFIGURACION DE SECCIONES
28      *
29      *  Este es el ejemplo de archivo de configuracion de secciones de un sistema.
30      *  Es necesario mantener el mismo formato ya que asi lo entiende la clase menu
31      *  y la clase como seccion.
32      *
33      *  Basado en datos.epl de Gonzalo Merayo <gmeray@mecon.gov.ar>
34      *
35      * imagenMouseOn puede estar vacia, en ese caso se asume imagenComun_f2
36      * imagenSelect  puede estar vacia, en ese caso se asume imagenComun_f3
37      *
38      *  thu apr 15 15:25:10 ART 2003
39      */         
40
41     return array (
42             //Directorios del sistema, salvo el root, todos son opcionales
43             //Si no se ponen, o estan vacias se asume lo que dice el comentario al lado de cada una
44             'directorios'       = array ('root'     => 'www/sistemas/prueba/www',           //obligatorio
45                                          'imagenes' => 'www/sistemas/prueba/www/images',    //www/sistema/<nombre_sistema>/www/images
46                                          'estilos'  => '',                                  //www/sistema/<nombre_sistema>/www/css
47                                          'js'       => '',                                  //www/sistema/<nombre_sistema>/www/js
48                                   ),
49             'titulo_sistema'    = 'Prueba del Objeto Marco',
50             'pie_sistema'       = 'Prueba Objeto Marco - Ministerio de Economia'
51             'secciones'         = array (
52                 // SECCION 1 {{{
53                 // LAS UNICAS CLAVES OBLIGATORIAS SON NOMBRE, IMAGENCOMUN Y LINK
54                 array (
55                     'nombre'        => 'Usuarios',      //NOMBRE DE LA SECCION
56                     'imagenComun'   => 'usuarios',       //IMAGEN COMUN
57                     'imagenMouseOn' => '',              //
58                     'imagenSelect'  => '',              //
59                     'link'          => 'usuarios',      //LINK DE LA SECCION
60                     'tipoMenu'      => 'vertical',      //TIPO DEL MENU DE HIJOS (vertical, horizontal, oculto)
61                     'hijos'         =>  array (         //HIJOS PARA EL MENU
62                                             array ( 'nombre'        => 'Filtrar Usuario',   //NOMBRE DEL HIJO 1
63                                                     'imagenComun'   => 'usuarios-filtrar',   //IMAGEN COMUN
64                                                     'imagenMouseOn' => '',                  //
65                                                     'imagenSelect'  => '',                  //
66                                                     'link'          => 'usuarios-filtrar',  //LINK DEL HIJO
67                                                     'subhijos'      => array (  'sarasa1',
68                                                                                 'sarasa2',
69                                                                                 'sarasa3',
70                                                                                 'sarasa4',
71                                                                        ),
72                                             ),
73                                             array ( 'nombre'        => 'ABM Usuario',       //NOMBRE DEL HIJO 2
74                                                     'imagenComun'   => 'usuarios-abm',      //IMAGEN COMUN
75                                                     'imagenMouseOn' => '',                  //
76                                                     'imagenSelect'  => '',                  //
77                                                     'link'          => 'usuarios-abm',      //LINK DEL HIJO
78                                             ),
79                                         ),
80                 ),
81                 // }}} FIN SECCION 1 
82                 // SECCION 2 {{{
83                 // LAS UNICAS CLAVES OBLIGATORIAS SON NOMBRE, IMAGENCOMUN Y LINK
84                 array (
85                     'nombre'        => 'Perfiles',      //NOMBRE DE LA SECCION
86                     'imagenComun'   => 'perfiles',       //IMAGEN COMUN
87                     'imagenMouseOn' => '',              //
88                     'imagenSelect'  => '',              //
89                     'link'          => 'perfiles',      //LINK DE LA SECCION
90                     'tipoMenu'      => 'vertical',      //TIPO DEL MENU DE HIJOS (vertical, horizontal, oculto)
91                     'hijos'         =>  array (         //HIJOS PARA EL MENU
92                                             array ( 'nombre'        => 'Perfiles - Hijo',   //NOMBRE DEL HIJO 1
93                                                     'imagenComun'   => 'perfiles-nionio',   //IMAGEN COMUN
94                                                     'imagenMouseOn' => '',                  //
95                                                     'imagenSelect'  => '',                  //
96                                                     'link'          => 'perfiles-hijo',     //LINK DEL HIJO
97                                             ),
98                                         ),
99                 ),
100                 // }}} FIN SECCION 2 
101             ),
102    );
103
104 ?>