X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/89bf19b89812163353d94256d7adb0f3a9cda453..2c5b5f3c9236e753ab69098c4855bc1cad88fc67:/sistema/local_lib/HTML_Servicio.php diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index 28b8fbd..15239e8 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -1,7 +1,7 @@ servicio = new AI_Servicio($seccion); $this->servicio->cargar($bd); - $this->servicio->cargarHijos($bd); + $this->servicio->cargarHijos($bd, true, AI_SERVICIO_ORDEN_LONG_NOMBRE); } // -X2C @@ -78,19 +79,20 @@ class HTML_Servicio extends HTML_Table { $this->servicio->link = 'servicios.php?servicios='.$this->servicio->servicio; elseif($this->servicio->necesita_logueo) $this->servicio->link = 'login.php?redirect='.$this->servicio->servicio; - $l = new HTML_Link($this->servicio->link, $this->servicio->nombre, array(), + $l = new MECON_HTML_Link($this->servicio->link, $this->servicio->nombre, array(), array('class' => 'servicio_titulo_tabla')); - $this->addRow(array('   '.$l->toHTML()), + //$this->addRow(array('   '.$l->toHTML()),//Volvera... + $this->addRow(array('   '.$this->servicio->nombre), array('align' => 'center', 'class' => 'arboltitulo', 'background'=>'images/servicio_cabecera.gif', 'height'=>30, 'class' => 'servicio_titulo_tabla')); - $img = new HTML_Image('images/servicio_bullet.gif'); + $img = new MECON_HTML_Image('images/servicio_bullet.gif'); $int =& new HTML_Table(array('width' =>'360', 'border' => '0', 'cellspacing' => '0', - 'cellpadding' => '0', + 'cellpadding' => '1', 'bgcolor' => '#FFFFFF')); $int->addRow(array($img, '',$img,''), array()); @@ -98,11 +100,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) @@ -111,9 +115,9 @@ 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) + if($par) { - $int->setCellContents(0, 3, new HTML_Link($s->link, $s->nombre, + $int->setCellContents(0, 3, new MECON_HTML_Link($s->link, $s->nombre, array(), array('class' => 'servicio_tabla'))); $this->addRow(array($int)); @@ -121,7 +125,7 @@ class HTML_Servicio extends HTML_Table { } else { - $int->setCellContents(0, 1, new HTML_Link($s->link, $s->nombre, + $int->setCellContents(0, 1, new MECON_HTML_Link($s->link, $s->nombre, array(), array('class' => 'servicio_tabla'))); $par = true; @@ -129,7 +133,7 @@ class HTML_Servicio extends HTML_Table { } if($par) { - $int->setCellContents(0, 1, new HTML_Link($s->link, $s->nombre, + $int->setCellContents(0, 1, new MECON_HTML_Link($s->link, $s->nombre, array(), array('class' => 'servicio_tabla'))); $int->setCellContents(0, 2, ''); @@ -137,7 +141,7 @@ class HTML_Servicio extends HTML_Table { $this->addRow(array($int)); } - $this->addRow(array(new HTML_Image('images/servicio_borde_inf.gif'))); + $this->addRow(array(new MECON_HTML_Image('images/servicio_borde_inf.gif'))); return parent::toHTML(); } // -X2C @@ -154,4 +158,4 @@ class HTML_Servicio extends HTML_Table { // -X2C } // -X2C Class :HTML_Servicio -?> +?> \ No newline at end of file