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.
96 function getSeleccionada()
98 return $this->_seleccionada;
103 * @param bool $seleccionada Seleccionada.
108 function setSeleccionada($seleccionada)
110 $this->_seleccionada = $seleccionada;
119 function getHabilitada()
121 return $this->_habilitada;
126 * @param bool $habilitada Habilitada.
131 function setHabilitada($habilitada)
133 $this->_habilitada = $habilitada;
149 * @param string $link Link.
154 function setLink($link)
156 $this->_link = $link;
167 return $this->_nombre;
172 * @param string $nombre Nombre.
177 function setNombre($nombre)
179 $this->_nombre = $nombre;
186 * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
188 * @param string $imagenComun Nombre del archivo imagen.
189 * @param string $imagenMouseOn Imagen alterna con el mouse por arriba
190 * @param string $imagenSelect Imagen alterna cuando esta seleccionada la seccion
191 * @param string $directorio Directorio en donde se encuentran las imagenes
192 * @param string $nombre Nombre de la imagen animada.
197 function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '')// ~X2C
199 if ($imagenComun !== '') {
200 $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
201 if ($imagenMouseOn !== '') {
202 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio);
205 $this->_imgMouseOn = $this->_calcularImagen($imagenComun, $directorio, '_f2');
207 if ($imagenSelect !== '') {
208 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio);
211 $this->_imgSelect = $this->_calcularImagen($imagenComun, $directorio, '_f3');
214 $this->_nombre = $nombre;
220 * Funcion que devuelve un string con el html a imprimir en pantalla.
225 function toHtml()// ~X2C
227 $img = new HTML_Image(array('name' => $this->getName(), 'border' => 0));
228 $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
229 $img->updateAttributes(array ('src' => $src) );
230 $html = $img->toHtml();
231 if ($this->getHabilitada()) {
232 if ($this->getSeleccionada()) {
233 $prepend = '<a href="'.$this->getLink().'">';
235 $prepend = '<a href="'.$this->getLink().'" onMouseOut="MM_swapImgRestore()"
236 onMouseOver="MM_displayStatusMsg(\''.$this->getName().'\');
237 MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1);
238 return document.MM_returnValue"
239 MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
241 $html = $prepend . $html . '</a>';
247 // +X2C Operation 209
249 * @param string $imagen Nombre de la imagen.
250 * @param string $directorio Directorio.
251 * @param string $modificador Modificador que indica una variante de la imagen.
256 function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C
258 if ($modificador !== '') {
259 $pos = strrpos($imagen, '.');
260 $ext = substr($imagen, $pos);
261 $nom = substr($imagen, 0, $pos);
262 $imagen = "$nom$modificador$ext";
264 if (is_readable("{$_SERVER['DOCUMENT_ROOT']}$directorio/$imagen")) {
265 return "$directorio/$imagen";
268 return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
273 } // -X2C Class :ImagenAnimada