X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/e59d3170b36e5b9ccc19afcb1565faf4dcb40463..80e7fe0c5252de7db56416187636dac4e0f6fcdf:/sistema/local_lib/HTML_Servicio.php diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index c642018..ec6110a 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -1,7 +1,7 @@ '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); - $this->servicio->cargarHijos($bd); + $this->servicio->cargarHijos($bd, true, AI_SERVICIO_ORDEN_LONG_NOMBRE); } // -X2C @@ -99,11 +98,13 @@ class HTML_Servicio extends HTML_Table { 'background' => 'images/servicio_borde_sup_izq.gif', 'valign' => 'top')); $int->updateColAttributes(1, array('width' => '40%', + 'valign' => 'top', 'background' => 'images/servicio_borde_sup_cen.gif')); $int->updateColAttributes(2, array('width' => '10%', 'background' => 'images/servicio_borde_sup_cen.gif', 'valign' => 'top')); $int->updateColAttributes(3, array('width' => '40%', + 'valign' => 'top', 'background' => 'images/servicio_borde_sup_der.gif')); $par = false; foreach($this->servicio->getHijos() as $s) @@ -112,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; - if($par) + $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)); @@ -155,4 +161,4 @@ class HTML_Servicio extends HTML_Table { // -X2C } // -X2C Class :HTML_Servicio -?> \ No newline at end of file +?>