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 'HTML/Image.php';
29 define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
31 // +X2C Class 17 :ImagenAnimada
33 * Clase para el manejo de la animacion de las imagenes. Utilizada principalmente en la barra de secciones
39 * Nombre del archivo imagen.
41 * @var string $imgComun
47 * Nombre del archivo imagen.
49 * @var string $imgMouseOn
55 * Nombre del archivo imagen.
57 * @var string $imgSelect
63 * Indica si la imagen esta seleccionada.
65 * @var bool $seleccionada
68 var $_seleccionada = false;
71 * Indica si est?habilitado el link.
73 * @var bool $habilitada
76 var $_habilitada = true;
79 * Link a donde apunta la imagen.
98 function getSeleccionada()
100 return $this->_seleccionada;
105 * @param bool $seleccionada Seleccionada.
110 function setSeleccionada($seleccionada)
112 $this->_seleccionada = $seleccionada;
121 function getHabilitada()
123 return $this->_habilitada;
128 * @param bool $habilitada Habilitada.
133 function setHabilitada($habilitada)
135 $this->_habilitada = $habilitada;
151 * @param string $link Link.
156 function setLink($link)
158 $this->_link = $link;
169 return $this->_nombre;
174 * @param string $nombre Nombre.
179 function setNombre($nombre)
181 $this->_nombre = $nombre;
188 * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
190 * @param string $imagenComun Nombre del archivo imagen.
191 * @param string $imagenMouseOn Imagen alterna con el mouse por arriba
192 * @param string $imagenSelect Imagen alterna cuando esta seleccionada la seccion
193 * @param string $directorio Directorio en donde se encuentran las imagenes
194 * @param string $nombre Nombre de la imagen animada.
199 function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '')// ~X2C
201 if ($imagenComun !== '') {
202 $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
203 if ($imagenMouseOn !== '') {
204 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio);
207 $this->_imgMouseOn = $this->_calcularImagen($imagenComun, $directorio, '_f2');
209 if ($imagenSelect !== '') {
210 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio);
213 $this->_imgSelect = $this->_calcularImagen($imagenComun, $directorio, '_f3');
216 $this->_nombre = $nombre;
222 * Funcion que devuelve un string con el html a imprimir en pantalla.
227 function toHtml()// ~X2C
229 $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
230 $img = new HTML_Image($src, $this->_nombre, array('name' => $this->_nombre, 'border' => 0));
231 $html = $img->toHtml();
232 if ($this->getHabilitada()) {
233 if ($this->getSeleccionada()) {
234 $prepend = '<a href="'.$this->getLink().'">';
236 $prepend = '<a href="'.$this->getLink().'" onMouseOut="MM_swapImgRestore()"
237 onMouseOver="MM_displayStatusMsg(\''.$this->_nombre.'\');
238 MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1);
239 return document.MM_returnValue"
240 MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
242 $html = $prepend . $html . '</a>';
248 // +X2C Operation 209
250 * @param string $imagen Nombre de la imagen.
251 * @param string $directorio Directorio.
252 * @param string $modificador Modificador que indica una variante de la imagen.
257 function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C
259 if ($modificador !== '') {
260 $pos = strrpos($imagen, '.');
261 $ext = substr($imagen, $pos);
262 $nom = substr($imagen, 0, $pos);
263 $imagen = "$nom$modificador$ext";
265 if (is_readable("{$_SERVER['DOCUMENT_ROOT']}$directorio/$imagen")) {
266 return "$directorio/$imagen";
269 return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
274 } // -X2C Class :ImagenAnimada