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' => 'horizontal', // Tipo del menú de hijos [vertical, horizontal, oculto]
46 'permisos' => AI_PERM_NOTICIAS,
48 array('nombre' => 'Grupos', // {{{
49 'imagenComun' => 'grupos.gif',
50 'imagenMouseOn' => 'grupos2.gif',
51 'imagenSelect' => 'grupos3.gif',
52 'link' => 'index/grupo',
53 'permisos' => array(AI_PERM_NOTICIAS),
55 array('nombre' => 'Secciones ocultas', // {{{
56 'imagenComun' => 'secciones_ocultas.gif',
57 'imagenMouseOn' => 'secciones_ocultas2.gif',
58 'imagenSelect' => 'secciones_ocultas3.gif',
59 'link' => 'secciones_ocultas',
60 'permisos' => array(AI_PERM_NOTICIAS),
66 // {{{ Sección de Servicios
68 'nombre' => 'Servicios',
69 'imagenComun' => 'general_servicios.gif',
70 'link' => 'index/servicio',
71 'tipoMenu' => 'oculto',
72 'permisos' => AI_PERM_SERVICIOS,
76 // {{{ Sección de Sistemas
78 'nombre' => 'Sistemas',
79 'imagenComun' => 'general_sistemas.gif',
80 'link' => 'index/sistema',
81 'tipoMenu' => 'oculto',
82 'permisos' => AI_PERM_SISTEMAS,