]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco/ImagenAnimada.php
Se modifico el constructor y se agrego una funcion buscarAgente que hace lo que hacia...
[mecon/meconlib.git] / lib / MECON / Marco / ImagenAnimada.php
index c9bae7d1612db49bbd9fd9d3ba08f66fb847f067..bb3f3bbb97878a8992415fe00812f458ffadce48 100644 (file)
 // $Rev$
 //
 
 // $Rev$
 //
 
+require_once '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
  *
 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
  *
+ * @package MECON_Marco
  * @access public
  */
 class ImagenAnimada {
  * @access public
  */
 class ImagenAnimada {
@@ -190,11 +193,12 @@ class ImagenAnimada {
      * @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 $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.
      *
      * @return void
      * @access public
      */
      *
      * @return void
      * @access public
      */
-    function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '')// ~X2C
+    function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '', $link = '') // ~X2C
     {
         if ($imagenComun !== '') {
             $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
     {
         if ($imagenComun !== '') {
             $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
@@ -212,6 +216,7 @@ class ImagenAnimada {
             }
         }
         $this->_nombre = $nombre;
             }
         }
         $this->_nombre = $nombre;
+        $this->_link   = $link;
     }
     // -X2C
 
     }
     // -X2C
 
@@ -222,21 +227,20 @@ class ImagenAnimada {
      * @return string
      * @access public
      */
      * @return string
      * @access public
      */
-    function toHtml()// ~X2C
+    function toHtml() // ~X2C
     {
     {
-        $img = new HTML_Image(array('name' => $this->getName(), 'border' => 0));
         $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
         $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
-        $img->updateAttributes(array ('src' => $src) );
+        $img = new HTML_Image($src, $this->_nombre, array('name' => $this->_nombre, 'border' => 0));
         $html = $img->toHtml();
         if ($this->getHabilitada()) {
             if ($this->getSeleccionada()) {
                 $prepend = '<a href="'.$this->getLink().'">';
             } else {
                 $prepend = '<a href="'.$this->getLink().'" onMouseOut="MM_swapImgRestore()"
         $html = $img->toHtml();
         if ($this->getHabilitada()) {
             if ($this->getSeleccionada()) {
                 $prepend = '<a href="'.$this->getLink().'">';
             } else {
                 $prepend = '<a href="'.$this->getLink().'" onMouseOut="MM_swapImgRestore()"
-                    onMouseOver="MM_displayStatusMsg(\''.$this->getName().'\');
-                    MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1);
+                    onMouseOver="MM_displayStatusMsg(\''.$this->_nombre.'\');
+                    MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1);
                     return document.MM_returnValue"
                     return document.MM_returnValue"
-                    MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
+                    MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
             }
             $html = $prepend . $html . '</a>';
         }
             }
             $html = $prepend . $html . '</a>';
         }
@@ -253,7 +257,7 @@ class ImagenAnimada {
      * @return string
      * @access protected
      */
      * @return string
      * @access protected
      */
-    function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C
+    function _calcularImagen($imagen, $directorio, $modificador = '') // ~X2C
     {
         if ($modificador !== '') {
             $pos = strrpos($imagen, '.');
     {
         if ($modificador !== '') {
             $pos = strrpos($imagen, '.');
@@ -272,4 +276,4 @@ class ImagenAnimada {
 
 } // -X2C Class :ImagenAnimada
 
 
 } // -X2C Class :ImagenAnimada
 
-?>
+?>
\ No newline at end of file