]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/Seccion.php
bf5f53fcd58ef5ae256d43a0c775dd58911e4d66
[mecon/meconlib.git] / marco / php / marco / Seccion.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
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 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 #require_once 'PEAR.php';
28
29
30 // +X2C includes
31 require_once 'Pagina.php';
32 // ~X2C
33
34 //Require Agregados por MMARRE, no pasan por el xmi2code
35 require_once 'ImagenAnimada.php';
36 require_once 'Menu.php';
37
38 // +X2C Class 16 :Seccion
39 /**
40  * Clase seccion para el manejo de las secciones
41  *
42  * @access public
43  */
44 class Seccion extends Pagina {
45     /**
46      * Nombre de la seccion.
47      *
48      * @var    string $nombre
49      *
50      * @access private
51      */
52     var $_nombre;
53
54     /**
55      * Este es el nombre de la imagen
56      *
57      * @var    Imagen $imagen
58      *
59      * @access private
60      */
61     var $_imagen;
62
63     /**
64      * Hijos (menu) de la seccion.
65      *
66      * @var    Menu $hijos
67      *
68      * @access private
69      */
70     var $_hijos;
71
72     // ~X2C
73
74     // +X2C Operation 63
75     /**
76      * Constructor. Recibe como parametro el nombre de la seccion
77      *
78      * @param  array $seccion Array con la informacion de la seccion
79      *
80      * @return void
81      *
82      * @access public
83      * @static
84      */
85     function Seccion($seccion) // ~X2C
86     {
87         $this->_nombre = $seccion['nombre'];
88         $this->_imagen = new ImagenAnimada($seccion['imagenComun']);
89         parent::Pagina($seccion['link']);
90         $this->_cargarHijos($seccion['hijos']);
91     }
92     // -X2C
93
94     // +X2C Operation 64
95     /**
96      * Funcion que devuelve un string con el html a imprimir por pantalla.
97      *
98      * @return string
99      *
100      * @access public
101      */
102     function toHtml() // ~X2C
103     {
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>";
105         return $tmp;
106     }
107     // -X2C
108
109     // +X2C Operation 84
110     /**
111      * Carga el array con los objetos hijos de la seccion
112      *
113      * @param  array $hijos Array con los datos de los hijos de la seccion
114      *
115      * @return void
116      *
117      * @access private
118      */
119     function _cargarHijos($hijos) // ~X2C
120     {
121         $this->_hijos = array ();
122         foreach ($hijos as $hijo) {
123             $tmp = new Menu (null, $hijo['nombre'],$hijo['link']);
124             array_push($this->_hijos, $tmp);
125         }
126     }
127     // -X2C
128
129 } // -X2C Class :Seccion
130
131 ?>