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 define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
29 // +X2C Class 17 :ImagenAnimada
31 * Clase para el manejo de la animacion de las imagenes. Utilizada principalmente en la barra de secciones
37 * Nombre del archivo imagen.
39 * @var string $imgComun
45 * Nombre del archivo imagen.
47 * @var string $imgMouseOn
53 * Nombre del archivo imagen.
55 * @var string $imgSelect
61 * Indica si la imagen esta seleccionada.
63 * @var bool $seleccionada
66 var $_seleccionada = false;
69 * Indica si est?habilitado el link.
71 * @var bool $habilitada
74 var $_habilitada = true;
77 * Link a donde apunta la imagen.
90 function getSeleccionada()
92 return $this->_seleccionada;
97 * @param bool $seleccionada Seleccionada.
102 function setSeleccionada($seleccionada)
104 $this->_seleccionada = $seleccionada;
113 function getHabilitada()
115 return $this->_habilitada;
120 * @param bool $habilitada Habilitada.
125 function setHabilitada($habilitada)
127 $this->_habilitada = $habilitada;
143 * @param string $link Link.
148 function setLink($link)
150 $this->_link = $link;
157 * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
159 * @param string $imagenComun Nombre del archivo imagen.
160 * @param string $imagenMouseOn Imagen alterna con el mouse por arriba
161 * @param string $imagenSelect Imagen alterna cuando esta seleccionada la seccion
162 * @param string $directorio Directorio en donde se encuentran las imagenes
167 function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '')// ~X2C
169 if ($imagenComun !== '') {
170 $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
171 if ($imagenMouseOn !== '') {
172 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio);
175 $this->_imgMouseOn = $this->_calcularImagen($imagenComun, $directorio, '_f2');
177 if ($imagenSelect !== '') {
178 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio);
181 $this->_imgSelect = $this->_calcularImagen($imagenComun, $directorio, '_f3');
189 * Funcion que devuelve un string con el html a imprimir en pantalla.
194 function toHtml()// ~X2C
196 $img = new HTML_Image(array('name' => $this->getName(), 'border' => 0));
197 $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
198 $img->updateAttributes('src' => $src);
199 $html = $img->toHtml();
200 if ($this->getHabilitada()) {
201 if ($this->getSeleccionada()) {
202 $prepend = '<a href="'.$this->getLink().'">';
204 $prepend = '<a href="'.$this->getLink().'" onMouseOut="MM_swapImgRestore()"
205 onMouseOver="MM_displayStatusMsg(\''.$this->getName().'\');
206 MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1);
207 return document.MM_returnValue"
208 MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
210 $html = $prepend . $html . '</a>';
216 // +X2C Operation 209
218 * @param string $imagen Nombre de la imagen.
219 * @param string $directorio Directorio.
220 * @param string $modificador Modificador que indica una variante de la imagen.
225 function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C
227 if ($modificador !== '') {
228 $pos = strrpos($imagen, '.');
229 $ext = substr($imagen, $pos);
230 $nom = substr($imagen, 0, $pos);
231 $imagen = "$nom$modificador$ext";
233 if (is_readable("{$_SERVER['DOCUMENT_ROOT']}$directorio/$imagen")) {
234 return "$directorio/$imagen";
237 return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
242 } // -X2C Class :ImagenAnimada