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. |
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. |
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. |
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 // +--------------------------------------------------------------------+
30 require_once 'permisos.php';
33 // Directorios web del sistema, salvo el root, todos son opcionales.
34 // Si no se ponen, o están vacíos se asume lo que dice el comentario al lado de cada uno.
35 'directorios' => array ('root' => '/sistemas/ai'),
36 'titulo_sistema' => 'AI (Administrador de Intranet)',
37 'secciones' => array (
38 // Las únicas claves obligatorias son nombre, imagenComun y link
40 // {{{ Sección de Noticias
42 'nombre' => 'Noticias', // Nombre de la sección
43 'imagenComun' => 'general_noticias.gif', // Imagen común
44 'link' => 'index/grupo', // Link de la sección
45 'tipoMenu' => 'oculto', // Tipo del menú de hijos [vertical, horizontal, oculto]
46 'permisos' => AI_PERM_NOTICIAS,
50 // {{{ Sección de Servicios
52 'nombre' => 'Servicios',
53 'imagenComun' => 'general_servicios.gif',
54 'link' => 'index/servicio',
55 'tipoMenu' => 'oculto',
56 'permisos' => AI_PERM_SERVICIOS,
60 // {{{ Sección de Sistemas
62 'nombre' => 'Sistemas',
63 'imagenComun' => 'general_sistemas.gif',
64 'link' => 'index/sistema',
65 'tipoMenu' => 'oculto',
66 'permisos' => AI_PERM_SISTEMAS,