X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/2865355d3fe97e43da89dec0166f782719809ebc..ea683eb1325a87b0cd05dce0426def25af8f1dd0:/sistema/local_lib/HTML_Servicio.php diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index 617681b..ec6110a 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -40,7 +40,6 @@ require_once 'HTML/Table.php'; // +X2C Class 165 :HTML_Servicio /** - * @package sistema_local_lib * @access public */ class HTML_Servicio extends HTML_Table { @@ -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)); @@ -157,4 +161,4 @@ class HTML_Servicio extends HTML_Table { // -X2C } // -X2C Class :HTML_Servicio -?> \ No newline at end of file +?>