]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Servicio.php
Se saca el session_start().
[mecon/intranet.git] / sistema / local_lib / HTML_Servicio.php
index 0b669d07ac2072c41824a43dc52ef768ab178aa5..ec6110a35aed4b12de6165f57662a41f45555988 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
 // +--------------------------------------------------------------------+
-// |                      Ministerio de Economía                        |
+// |                      Ministerio de Econom                        |
 // |                             Intranet                              |
 // +--------------------------------------------------------------------+
 // | This file is part of Intranet.                                    |
@@ -58,8 +58,7 @@ class HTML_Servicio extends HTML_Table {
                                  'border'      => '0',
                                  'cellspacing' => '0',
                                  'cellpadding' => '0',
-                                 'bgcolor'     => '#FFFFFF',
-                                'class'       => 'servicio_tabla'));
+                                 'bgcolor'     => '#FFFFFF'));
         $bd = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME
         $this->servicio = new AI_Servicio($seccion);
         $this->servicio->cargar($bd);
@@ -91,7 +90,7 @@ class HTML_Servicio extends HTML_Table {
         $int =& new HTML_Table(array('width'       =>'360',
                                      'border'      => '0',
                                      'cellspacing' => '0',
-                                     'cellpadding' => '1',
+                                     'cellpadding' => '0',
                                      'bgcolor'     => '#FFFFFF'));
         $int->addRow(array($img, '',$img,''),
                                array());
@@ -114,27 +113,32 @@ class HTML_Servicio extends HTML_Table {
                $s->link = 'servicios.php?servicios='.$s->servicio;
            elseif($s->necesita_logueo)
                $s->link = 'login.php?redirect='.$s->servicio;
+        $link = new MECON_HTML_Link($s->link, $s->nombre,
+            array(), 
+            array('class' => 'servicio_tabla'));
+        if ($s->ventana_nueva) {
+            $link->updateAttributes(array(
+                // XXX - no lo pongo porque no le veo sentido para links externos sacarles las barras y eso.
+                //'OnClick' => "javascript:window.open('{$s->link}','serv{$s->servicio}',"
+                //             . "'width=800,height=600,scrollbars=yes');return false;",
+                'target' => '_blank',
+            ));
+        }
         if($par)
            {
-                $int->setCellContents(0, 3, new MECON_HTML_Link($s->link, $s->nombre,
-                                      array(), 
-                                       array('class' => 'servicio_tabla')));
-                $this->addRow(array($int));
+            $int->setCellContents(0, 3, $link);
+            $this->addRow(array($int));
                $par = false;
            }
            else
            {
-                $int->setCellContents(0, 1, new MECON_HTML_Link($s->link, $s->nombre,
-                                      array(), 
-                                       array('class' => 'servicio_tabla')));
+                $int->setCellContents(0, 1, $link);
                $par = true;
           }
         }
         if($par)
         {
-            $int->setCellContents(0, 1, new MECON_HTML_Link($s->link, $s->nombre, 
-                                         array(), 
-                                          array('class' => 'servicio_tabla')));
+            $int->setCellContents(0, 1, $link);
             $int->setCellContents(0, 2, '');
             $int->setCellContents(0, 3, '');
             $this->addRow(array($int));