From 306f73a76ec56a0540fc2d255dc8572704360106 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 10 Nov 2003 14:41:36 +0000 Subject: [PATCH] Se usa la nueva opcion ventana_nueva de Servicio. --- sistema/local_lib/HTML_Servicio.php | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index 5b762a8..ec6110a 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -113,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)); @@ -156,4 +161,4 @@ class HTML_Servicio extends HTML_Table { // -X2C } // -X2C Class :HTML_Servicio -?> \ No newline at end of file +?> -- 2.43.0