X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/8782288c3f53321a0f1d41bb9f8450aaf838be14..abc5189f77351f5ceb757555725e64210655ec01:/lib/MECON/Marco/ImagenAnimada.php?ds=sidebyside diff --git a/lib/MECON/Marco/ImagenAnimada.php b/lib/MECON/Marco/ImagenAnimada.php index 66b2dca..792167e 100644 --- a/lib/MECON/Marco/ImagenAnimada.php +++ b/lib/MECON/Marco/ImagenAnimada.php @@ -24,7 +24,7 @@ Autor: Martin Marrese $Id$ -----------------------------------------------------------------------------*/ -require_once 'HTML/Image.php'; +require_once 'MECON/HTML/Image.php'; define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images'); @@ -69,7 +69,7 @@ class MECON_Marco_ImagenAnimada { var $_seleccionada = false; /** - * Indica si est?habilitado el link. + * Indica si está habilitado el link. * * @var bool $habilitada * @access protected @@ -186,6 +186,11 @@ class MECON_Marco_ImagenAnimada { // ~X2C + /** + * Texto alternativo. + */ + var $_alt = ''; + // +X2C Operation 70 /** * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen. @@ -196,11 +201,12 @@ class MECON_Marco_ImagenAnimada { * @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 MECON_Marco_ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '', $link = '') // ~X2C + function MECON_Marco_ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '', $link = '', $alt = '') // ~X2C { if ($imagenComun !== '') { $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio); @@ -219,6 +225,7 @@ class MECON_Marco_ImagenAnimada { } $this->_nombre = $nombre; $this->_link = $link; + $this->_alt = $alt ? $alt : $nombre; } // -X2C @@ -232,7 +239,7 @@ class MECON_Marco_ImagenAnimada { function toHtml() // ~X2C { $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun; - $img = new HTML_Image($src, $this->_nombre, array('name' => $this->_nombre, 'border' => 0)); + $img = new MECON_HTML_Image($src, $this->_alt, array('name' => $this->_nombre, 'border' => 0)); $html = $img->toHtml(); if ($this->getHabilitada()) { if ($this->getSeleccionada()) {