X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/5df0c5621bbee83b19a5ed01975135203dd33c34..a2a6a5f4d1500867db74046d8937f63ad3a7e82f:/lib/MECON/Marco/ImagenAnimada.php?ds=sidebyside diff --git a/lib/MECON/Marco/ImagenAnimada.php b/lib/MECON/Marco/ImagenAnimada.php index 6166045..4099652 100644 --- a/lib/MECON/Marco/ImagenAnimada.php +++ b/lib/MECON/Marco/ImagenAnimada.php @@ -1,45 +1,47 @@ - -// +----------------------------------------------------------------------+ -// -// $Id$ -// $Author$ -// $URL$ -// $Date$ -// $Rev$ -// + +------------------------------------------------------------------------------- +$Id$ +-----------------------------------------------------------------------------*/ + +require_once 'MECON/HTML/Image.php'; define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images'); -// +X2C Class 17 :ImagenAnimada /** - * Clase para el manejo de la animacion de las imagenes. Utilizada principalmente en la barra de secciones + * Clase para el manejo de la animacion de las imagenes. Utilizada + * principalmente en la barra de secciones * * @access public */ -class ImagenAnimada { +class MECON_Marco_ImagenAnimada { /** * Nombre del archivo imagen. * * @var string $imgComun * @access private */ - var $_imgComun; + var $_imgComun = ''; /** * Nombre del archivo imagen. @@ -47,7 +49,7 @@ class ImagenAnimada { * @var string $imgMouseOn * @access private */ - var $_imgMouseOn; + var $_imgMouseOn = ''; /** * Nombre del archivo imagen. @@ -55,7 +57,7 @@ class ImagenAnimada { * @var string $imgSelect * @access private */ - var $_imgSelect; + var $_imgSelect = ''; /** * Indica si la imagen esta seleccionada. @@ -66,7 +68,7 @@ class ImagenAnimada { var $_seleccionada = false; /** - * Indica si est?habilitado el link. + * Indica si está habilitado el link. * * @var bool $habilitada * @access protected @@ -81,6 +83,14 @@ class ImagenAnimada { */ var $_link = ''; + /** + * Nombre de la imagen + * + * @var string $nombre + * @access protected + */ + var $_nombre = ''; + /** * Gets Seleccionada. * @@ -137,6 +147,7 @@ class ImagenAnimada { { return $this->_link; } + /** * Sets Link. * @@ -150,21 +161,53 @@ class ImagenAnimada { $this->_link = $link; } - // ~X2C + /** + * Gets Nombre. + * + * @return string + * @access public + */ + function getNombre() + { + return $this->_nombre; + } - // +X2C Operation 70 /** - * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen. + * Sets Nombre. + * + * @param string $nombre Nombre. + * + * @return void + * @access public + */ + function setNombre($nombre) + { + $this->_nombre = $nombre; + } + + /** + * Texto alternativo. + */ + var $_alt = ''; + + /** + * Constructor. + * Recibe como parametro el nombre del archivo que contiene la imagen. * * @param string $imagenComun Nombre del archivo imagen. * @param string $imagenMouseOn Imagen alterna con el mouse por arriba * @param string $imagenSelect Imagen alterna cuando esta seleccionada la seccion * @param string $directorio Directorio en donde se encuentran las imagenes + * @param string $nombre Nombre de la imagen animada. + * @param string $link Link. + * @param string $alt Texto alternativo para la imagen. * * @return void * @access public */ - function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '')// ~X2C + function MECON_Marco_ImagenAnimada($imagenComun, $imagenMouseOn = '', + $imagenSelect = '', $directorio = '', $nombre = '', $link = '', + $alt = '') { if ($imagenComun !== '') { $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio); @@ -181,39 +224,37 @@ class ImagenAnimada { $this->_imgSelect = $this->_calcularImagen($imagenComun, $directorio, '_f3'); } } + $this->_nombre = $nombre; + $this->_link = $link; + $this->_alt = $alt ? $alt : $nombre; } - // -X2C - // +X2C Operation 71 /** * Funcion que devuelve un string con el html a imprimir en pantalla. * * @return string * @access public */ - function toHtml()// ~X2C + function toHtml() { - $img = new HTML_Image(array('name' => $this->getName(), 'border' => 0)); - $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun; - $img->updateAttributes(array ('src' => $src) ); + $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun; + $img = new MECON_HTML_Image($src, $this->_alt, array('name' => $this->_nombre, 'border' => 0)); $html = $img->toHtml(); if ($this->getHabilitada()) { if ($this->getSeleccionada()) { $prepend = ''; } else { $prepend = '_nombre.'\'); + MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1); return document.MM_returnValue" - MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1)>'; + MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1)>'; } $html = $prepend . $html . ''; } return $html; } - // -X2C - // +X2C Operation 209 /** * @param string $imagen Nombre de la imagen. * @param string $directorio Directorio. @@ -222,7 +263,7 @@ class ImagenAnimada { * @return string * @access protected */ - function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C + function _calcularImagen($imagen, $directorio, $modificador = '') { if ($modificador !== '') { $pos = strrpos($imagen, '.'); @@ -237,8 +278,6 @@ class ImagenAnimada { return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen"; } } - // -X2C - -} // -X2C Class :ImagenAnimada +} ?> \ No newline at end of file