]> git.llucax.com Git - mecon/ai.git/blob - sistema/conf/Marco.php
Se actualiza el diagrama UML.
[mecon/ai.git] / sistema / conf / Marco.php
1 <?php
2 // vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                  AI (Administrador de Intranet)                    |
6 // +--------------------------------------------------------------------+
7 // | This file is part of AI.                                           |
8 // |                                                                    |
9 // | AI is free software; you can redistribute it and/or modify         |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | AI is distributed in the hope that it will be useful, but          |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: vie jun 27 16:23:01 ART 2003                               |
24 // | Autor:  Leandro Lucarella <llucar@mecon.gov.ar>                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30 return array (
31     // Directorios web del sistema, salvo el root, todos son opcionales.
32     // Si no se ponen, o están vacíos se asume lo que dice el comentario al lado de cada uno.
33     'directorios'       => array ('root' => '/sistemas/ai'),
34     'titulo_sistema'    => 'AI (Administrador de Intranet)',
35     //'pie_sistema'       => '??????????????????????????????',
36     'secciones'         => array (
37         // Las únicas claves obligatorias son nombre, imagenComun y link
38
39         // {{{ Sección de Noticias
40         array (
41             'nombre'        => 'Noticias',  // Nombre de la sección
42             'imagenComun'   => 'general_noticias.gif',  // Imagen común
43             'imagenMouseOn' => '',          //
44             'imagenSelect'  => '',          //
45             'link'          => 'noticias',  // Link de la sección
46             'tipoMenu'      => 'oculto',    // Tipo del menú de hijos [vertical, horizontal, oculto]
47             'hijos'         =>  array (     // Hijos para el menú
48                 array (
49                     'nombre'        => 'Filtrar Usuario',   // Nombre
50                     'link'          => 'usuarios-filtrar',  // Link del hijo
51                     'subhijos'      => array (
52                         'sarasa1',
53                         'sarasa2',
54                         'sarasa3',
55                         'sarasa4',
56                     ),
57                 ),
58             ),
59         ),
60         // }}}
61
62         // {{{ Sección de Servicios
63         array (
64             'nombre'        => 'Servicios',
65             'imagenComun'   => 'general_servicios.gif',
66             'imagenMouseOn' => '',
67             'imagenSelect'  => '',
68             'link'          => 'servicios',
69             'tipoMenu'      => 'oculto',
70         ),
71         // }}}
72
73         // {{{ Sección de Sistemas
74         array (
75             'nombre'        => 'Sistemas',
76             'imagenComun'   => 'general_sistemas.gif',
77             'imagenMouseOn' => '',
78             'imagenSelect'  => '',
79             'link'          => 'sistemas',
80             'tipoMenu'      => 'oculto',
81             'hijos'         =>  array (     // Hijos para el menú
82             ),
83         ),
84         // }}}
85     ),
86 );
87
88 ?>