]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Mensaje.php
- Se agrega el comportamiento especial para las paginas de la oanet:
[mecon/intranet.git] / sistema / local_lib / HTML_Mensaje.php
index 1be99c2a32f07ed772572caa49eb587abd50d1f9..4729fc8347b7353e145df14d6bbbc074069d7cd9 100644 (file)
@@ -24,7 +24,7 @@
 // | Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>                                                    |
 // +--------------------------------------------------------------------+
 //
-// $Id: xmi2code.tpl.php 2 2003-06-23 18:29:20Z gmeray $
+// $Id$
 //
 
 require_once 'MECON/HTML/Image.php';
@@ -38,7 +38,6 @@ require_once 'HTML/Table.php';
 /**
  * Clase para mostrar mensajes en Intranet.
  *
- * @package sistema_local_lib
  * @access public
  */
 class HTML_Mensaje extends HTML_Table {
@@ -46,19 +45,19 @@ class HTML_Mensaje extends HTML_Table {
      * @var    string $img
      * @access private
      */
-    var $_img;
+    var $img;
 
     /**
      * @var    int $ancho
      * @access private
      */
-    var $_ancho;
+    var $ancho;
 
     /**
      * @var    string $texto
      * @access private
      */
-    var $_texto;
+    var $texto;
 
     // ~X2C
 
@@ -152,7 +151,7 @@ Puede ser: 'error', 'ok', 'alerta'.
        $tabla->updateCellAttributes(1, 1, array('background'=>'/sistemas/intranet/images/mensaje_superior.gif'));
        $tabla->updateCellAttributes(3, 1, array('background'=>'/sistemas/intranet/images/mensaje_inferior.gif'));
        
-       return $tabla->toHtml();
+       return '<div align="center">' . $tabla->toHtml() . '</div>';
                
     }
     // -X2C
@@ -172,4 +171,4 @@ Puede ser: 'error', 'ok', 'alerta'.
     // -X2C
 
 } // -X2C Class :HTML_Mensaje
-?>
\ No newline at end of file
+?>