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.
195 * @param string $link Link.
200 function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '', $link = '')// ~X2C
202 if ($imagenComun !== '') {
203 $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
204 if ($imagenMouseOn !== '') {
205 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio);
208 $this->_imgMouseOn = $this->_calcularImagen($imagenComun, $directorio, '_f2');
210 if ($imagenSelect !== '') {
211 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio);
214 $this->_imgSelect = $this->_calcularImagen($imagenComun, $directorio, '_f3');
217 $this->_nombre = $nombre;
218 $this->_link = $link;
224 * Funcion que devuelve un string con el html a imprimir en pantalla.
229 function toHtml()// ~X2C
231 $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
232 $img = new HTML_Image($src, $this->_nombre, array('name' => $this->_nombre, 'border' => 0));
233 $html = $img->toHtml();
234 if ($this->getHabilitada()) {
235 if ($this->getSeleccionada()) {
236 $prepend = '<a href="'.$this->getLink().'">';
238 $prepend = '<a href="'.$this->getLink().'" onMouseOut="MM_swapImgRestore()"
239 onMouseOver="MM_displayStatusMsg(\''.$this->_nombre.'\');
240 MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1);
241 return document.MM_returnValue"
242 MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
244 $html = $prepend . $html . '</a>';
250 // +X2C Operation 209
252 * @param string $imagen Nombre de la imagen.
253 * @param string $directorio Directorio.
254 * @param string $modificador Modificador que indica una variante de la imagen.
259 function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C
261 if ($modificador !== '') {
262 $pos = strrpos($imagen, '.');
263 $ext = substr($imagen, $pos);
264 $nom = substr($imagen, 0, $pos);
265 $imagen = "$nom$modificador$ext";
267 if (is_readable("{$_SERVER['DOCUMENT_ROOT']}$directorio/$imagen")) {
268 return "$directorio/$imagen";
271 return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
276 } // -X2C Class :ImagenAnimada