+<?php
+// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker:
+// +--------------------------------------------------------------------+
+// | Ministerio de Economía |
+// | AI (Administrador de Intranet) |
+// +--------------------------------------------------------------------+
+// | This file is part of AI. |
+// | |
+// | AI is free software; you can redistribute it and/or modify |
+// | it under the terms of the GNU General Public License as published |
+// | by the Free Software Foundation; either version 2 of the License, |
+// | or (at your option) any later version. |
+// | |
+// | AI is distributed in the hope that it will be useful, but |
+// | WITHOUT ANY WARRANTY; without even the implied warranty of |
+// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
+// | General Public License for more details. |
+// | |
+// | You should have received a copy of the GNU General Public License |
+// | along with Hooks; if not, write to the Free Software Foundation, |
+// | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
+// +--------------------------------------------------------------------+
+// | Creado: vie jun 27 16:23:01 ART 2003 |
+// | Autor: Leandro Lucarella <llucar@mecon.gov.ar> |
+// +--------------------------------------------------------------------+
+//
+// $Id$
+//
+
+return array (
+ // Directorios web del sistema, salvo el root, todos son opcionales.
+ // Si no se ponen, o están vacíos se asume lo que dice el comentario al lado de cada uno.
+ 'directorios' => array ('root' => '/sistemas/ai'),
+ 'titulo_sistema' => 'AI (Administrador de Intranet)',
+ 'pie_sistema' => '??????????????????????????????',
+ 'secciones' => array (
+ // Las únicas claves obligatorias son nombre, imagenComun y link
+
+ // {{{ Sección de Noticias
+ array (
+ 'nombre' => 'Noticias', // Nombre de la sección
+ 'imagenComun' => 'noticias', // Imagen común
+ 'imagenMouseOn' => '', //
+ 'imagenSelect' => '', //
+ 'link' => 'noticias', // Link de la sección
+ 'tipoMenu' => 'oculto', // Tipo del menú de hijos [vertical, horizontal, oculto]
+ 'hijos' => array ( // Hijos para el menú
+ array (
+ 'nombre' => 'Filtrar Usuario', // Nombre
+ 'link' => 'usuarios-filtrar', // Link del hijo
+ 'subhijos' => array (
+ 'sarasa1',
+ 'sarasa2',
+ 'sarasa3',
+ 'sarasa4',
+ ),
+ ),
+ ),
+ ),
+ // }}}
+
+ // {{{ Sección de Servicios
+ array (
+ 'nombre' => 'Servicios',
+ 'imagenComun' => 'servicios',
+ 'imagenMouseOn' => '',
+ 'imagenSelect' => '',
+ 'link' => 'servicios',
+ 'tipoMenu' => 'oculto',
+ ),
+ // }}}
+
+ // {{{ Sección de Sistemas
+ array (
+ 'nombre' => 'Sistemas',
+ 'imagenComun' => 'sistemas',
+ 'imagenMouseOn' => '',
+ 'imagenSelect' => '',
+ 'link' => 'sistemas',
+ 'tipoMenu' => 'oculto',
+ 'hijos' => array ( // Hijos para el menú
+ ),
+ ),
+ // }}}
+ ),
+);
+
+?>