X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/c49c4882cf7f68c039797ec1fe9d2fb036597965..abc5189f77351f5ceb757555725e64210655ec01:/lib/MECON/Marco/ImagenAnimada.php?ds=sidebyside diff --git a/lib/MECON/Marco/ImagenAnimada.php b/lib/MECON/Marco/ImagenAnimada.php index 78dbd3f..792167e 100644 --- a/lib/MECON/Marco/ImagenAnimada.php +++ b/lib/MECON/Marco/ImagenAnimada.php @@ -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 MECON_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()) {