]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Institucional.php
Se agrega mensajito cuando no tiene ningun sistema y se centran los mensajes.
[mecon/intranet.git] / sistema / local_lib / HTML_Institucional.php
index 4a4fa495b6e8df05ef52df20dae98eef0ed5de1c..6f6ff53a2c0c980fb889814b3e0cb3a46720a732 100644 (file)
@@ -102,15 +102,11 @@ class HTML_Institucional extends HTML_Table {
     function toHtml()
     {
         //Ajusto el ancho del mensaje
-        $ancho_msg = $this->_ancho - 48 - 48;
+        $ancho_msg = $this->_ancho - 30;
 
         //Imagenes
         $IMG_Izquierda =& new MECON_HTML_Image(
-                '/sistemas/intranet/images/institucional_izquierda.gif');
-        $IMG_Texto     =& new MECON_HTML_Image(
-                '/sistemas/intranet/images/institucional_fondo.gif');
-        $IMG_Derecha   =& new MECON_HTML_Image(
-                '/sistemas/intranet/images/institucional_derecha.gif');
+                '/sistemas/intranet/images/institucional_icono.gif');
 
         //Armo el link 
         $attrs = 'width='. $this->_ancho_js .',height='. $this->_alto_js
@@ -133,27 +129,24 @@ class HTML_Institucional extends HTML_Table {
         $tabla->addrow(
                 array(
                     $IMG_Izquierda, 
-                    $link, 
-                    $IMG_Derecha),
+                    $link),
                 array ('valign'=>'top')
                 );
-        $tabla->updateColAttributes(0, array('width'=>'48'));
+        $tabla->updateColAttributes(0, array('width'=>'30'));
         $tabla->updateColAttributes(1, 
                 array(
                     'width'  => $ancho_msg, 
-                    'align'  => 'center', 
+                    'align'  => 'left', 
                     'valign' => 'middle'
                     )
                 );
-        $tabla->updateColAttributes(2, array('width'=>'48'));
         $tabla->updateCellAttributes(0, 1, 
                 array(
-                    'background'=>'/sistemas/intranet/images/institucional_fondo.gif',
                     'class'=>'institucional'
                     )
                 );
 
-        return $tabla;
+        return $tabla->toHtml();
     }
 
     /**