]> git.llucax.com Git - mecon/ai.git/blob - sistema/conf/Marco.php
- Se pasan las librerias de locales a generales.
[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'       => 'PIE GO HOME!!!!',
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             'link'          => 'index/grupo',           // Link de la sección
44             'tipoMenu'      => 'oculto',                // Tipo del menú de hijos [vertical, horizontal, oculto]
45         ),
46         // }}}
47
48         // {{{ Sección de Servicios
49         array (
50             'nombre'        => 'Servicios',
51             'imagenComun'   => 'general_servicios.gif',
52             'link'          => 'index/servicio',
53             'tipoMenu'      => 'oculto',
54         ),
55         // }}}
56
57         // {{{ Sección de Sistemas
58         array (
59             'nombre'        => 'Sistemas',
60             'imagenComun'   => 'general_sistemas.gif',
61             'link'          => 'index/sistema',
62             'tipoMenu'      => 'oculto',
63         ),
64         // }}}
65     ),
66 );
67
68 ?>