+<?php
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// +----------------------------------------------------------------------+
+// | PHP Version 4 |
+// +----------------------------------------------------------------------+
+// | Copyright (c) 1997-2003 The PHP Group |
+// +----------------------------------------------------------------------+
+// | This source file is subject to version 2.02 of the PHP license, |
+// | that is bundled with this package in the file LICENSE, and is |
+// | available at through the world-wide-web at |
+// | http://www.php.net/license/2_02.txt. |
+// | If you did not receive a copy of the PHP license and are unable to |
+// | obtain it through the world-wide-web, please send a note to |
+// | license@php.net so we can mail you a copy immediately. |
+// +----------------------------------------------------------------------+
+// | Created: thu apr 15 15:22:58 ART 2003
+// | Author: Martin Marrese <mmarre@mecon.gov.ar>
+// +----------------------------------------------------------------------+
+//
+// $Id$
+// $Author$
+// $URL$
+// $Date$
+// $Rev$
+//
+
+ /** ARCHIVO DE CONFIGURACION DE SECCIONES
+ *
+ * Este es el ejemplo de archivo de configuracion de secciones de un sistema.
+ * Es necesario mantener el mismo formato ya que asi lo entiende la clase menu
+ * y la clase como seccion.
+ *
+ * Basado en datos.epl de Gonzalo Merayo <gmeray@mecon.gov.ar>
+ *
+ * thu apr 15 15:25:10 ART 2003
+ */
+
+ return array (
+ // SECCION 1 {{{
+ array (
+ 'nombre' => 'Usuarios', //NOMBRE DE LA SECCION
+ 'img_comun' => 'usuarios.gif', //IMAGEN COMUN
+ 'img_mouseon' => 'usuarios_f2.gif', //IMAGEN MOUSE POR ARRIBA
+ 'img_select' => 'usuarios_f3.gif', //IMAGEN SELECCIONADO
+ 'link' => 'usuarios.php', //LINK DE LA SECCION
+ 'hijos' => array (
+ array ( 'nombre'=> 'Filtrar Usuario', //NOMBRE DEL HIJO
+ 'link' => 'usuarios-filtrar.php', //LINK DEL HIJO
+ ),
+ array ( 'nombre'=> 'ABM Usuario', //NOMBRE DEL HIJO
+ 'link' => 'usuarios-abm.php', //LINK DEL HIJO
+ ),
+ ),
+ ),
+ // }}} FIN SECCION 1
+ );
+
+?>