// ~X2C
+ /**
+ * Texto alternativo.
+ */
+ var $_alt = '';
+
// +X2C Operation 70
/**
* Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
* @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);
}
$this->_nombre = $nombre;
$this->_link = $link;
+ $this->_alt = $alt ? $alt : $nombre;
}
// -X2C
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()) {