X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/2c5b5f3c9236e753ab69098c4855bc1cad88fc67..ba00ad2867590a8c6d19a063b3e29d4379e38547:/sistema/local_lib/HTML_Servicio.php diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index 15239e8..6b298ec 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -1,17 +1,17 @@ | +// | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $ +// $Id$ // - require_once 'MECON/HTML/Image.php'; require_once 'MECON/HTML/Link.php'; -require_once 'DB.php'; +require_once 'intranetdb.php'; require_once 'AI/Servicio.php'; -// require_once 'AI/DB.php'; // +X2C includes require_once 'HTML/Table.php'; @@ -40,7 +38,6 @@ require_once 'HTML/Table.php'; // +X2C Class 165 :HTML_Servicio /** - * @package sistema_local_lib * @access public */ class HTML_Servicio extends HTML_Table { @@ -59,12 +56,11 @@ class HTML_Servicio extends HTML_Table { 'border' => '0', 'cellspacing' => '0', 'cellpadding' => '0', - 'bgcolor' => '#FFFFFF', - 'class' => 'servicio_tabla')); - $bd = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME + 'bgcolor' => '#FFFFFF')); + $db = IntranetDB::connect(); $this->servicio = new AI_Servicio($seccion); - $this->servicio->cargar($bd); - $this->servicio->cargarHijos($bd, true, AI_SERVICIO_ORDEN_LONG_NOMBRE); + $this->servicio->cargar($db); + $this->servicio->cargarHijos($db, true, AI_SERVICIO_ORDEN_LONG_NOMBRE); } // -X2C @@ -76,9 +72,9 @@ class HTML_Servicio extends HTML_Table { function toHTML() // ~X2C { if($this->servicio->link == '') - $this->servicio->link = 'servicios.php?servicios='.$this->servicio->servicio; + $this->servicio->link = $_SERVER['PHP_SELF'].'?servicios='.$this->servicio->servicio; elseif($this->servicio->necesita_logueo) - $this->servicio->link = 'login.php?redirect='.$this->servicio->servicio; + $this->servicio->link = 'login?redirect='.$this->servicio->servicio; $l = new MECON_HTML_Link($this->servicio->link, $this->servicio->nombre, array(), array('class' => 'servicio_titulo_tabla')); //$this->addRow(array('   '.$l->toHTML()),//Volvera... @@ -92,7 +88,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()); @@ -112,30 +108,35 @@ class HTML_Servicio extends HTML_Table { foreach($this->servicio->getHijos() as $s) { if($s->link == '') - $s->link = 'servicios.php?servicios='.$s->servicio; + $s->link = $_SERVER['PHP_SELF'].'?servicios='.$s->servicio; elseif($s->necesita_logueo) - $s->link = 'login.php?redirect='.$s->servicio; + $s->link = 'login?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)); @@ -153,9 +154,10 @@ class HTML_Servicio extends HTML_Table { */ function getCSS() // ~X2C { - return "css/servicio.css"; + return 'css/servicio.css'; } // -X2C } // -X2C Class :HTML_Servicio -?> \ No newline at end of file + +?>