2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license, |
9 // | that is bundled with this package in the file LICENSE, and is |
10 // | available at through the world-wide-web at |
11 // | http://www.php.net/license/2_02.txt. |
12 // | If you did not receive a copy of the PHP license and are unable to |
13 // | obtain it through the world-wide-web, please send a note to |
14 // | license@php.net so we can mail you a copy immediately. |
15 // +----------------------------------------------------------------------+
16 // | Created: Mon Apr 14 16:23:22 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
27 #require_once 'PEAR.php';
31 require_once 'Pagina.php';
34 //Require Agregados por MMARRE, no pasan por el xmi2code
35 require_once 'ImagenAnimada.php';
36 require_once 'Menu.php';
38 // +X2C Class 16 :Seccion
40 * Clase seccion para el manejo de las secciones
44 class Seccion extends Pagina {
46 * Nombre de la seccion.
55 * Este es el nombre de la imagen
64 * Hijos (menu) de la seccion.
76 * Constructor. Recibe como parametro el nombre de la seccion
78 * @param array $seccion Array con la informacion de la seccion
85 function Seccion($seccion) // ~X2C
87 $this->_nombre = $seccion['nombre'];
88 $this->_imagen = new ImagenAnimada($seccion['imagenComun']);
89 parent::Pagina($seccion['link']);
90 $this->_cargarHijos($seccion['hijos']);
96 * Funcion que devuelve un string con el html a imprimir por pantalla.
102 function toHtml() // ~X2C
104 $tmp = "<a href=\"".$this->_link."\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_displayStatusMsg('".$this->_nombre."'); MM_swapImage('".$this->_nombre."','','images/".$this->_imagen->_imgMouseOn."',1); return document.MM_returnValue\" MM_swapImage('".$this->_nombre."','','images/".$this->_imagen->_imgMouseOn."',1)><img name=\"".$this->_nombre."\" src=\"images/".$this->_imagen->_imgComun."\" width=\"139\" height=\"54\" border=\"0\" alt=\"".$this->_imagen->_alt."\"></a>";
111 * Carga el array con los objetos hijos de la seccion
113 * @param array $hijos Array con los datos de los hijos de la seccion
119 function _cargarHijos($hijos) // ~X2C
121 $this->_hijos = array ();
122 foreach ($hijos as $hijo) {
123 $tmp = new Menu (null, $hijo['nombre'],$hijo['link']);
124 array_push($this->_hijos, $tmp);
129 } // -X2C Class :Seccion