]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco/ImagenAnimada.php
Agrego el campo nombre_breve a los metodos estaticos.
[mecon/meconlib.git] / lib / MECON / Marco / ImagenAnimada.php
index cd28db36bf2b3645ab2895d628a6e8c72547a61c..792167edc8a6951d9e86cb1fbd58ac5c6dc299f3 100644 (file)
@@ -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 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()) {