X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/89bf19b89812163353d94256d7adb0f3a9cda453..318a2f102fc0f2b56fe3b85d5ffbc7e812613761:/sistema/local_lib/HTML_Servicio.php diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index 28b8fbd..1386fe4 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -28,8 +28,8 @@ // -require_once 'HTML/Image.php'; -require_once 'HTML/Link.php'; +require_once 'MECON/HTML/Image.php'; +require_once 'MECON/HTML/Link.php'; require_once 'DB.php'; require_once 'AI/Servicio.php'; // require_once 'AI/DB.php'; @@ -78,7 +78,7 @@ 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()), array('align' => 'center', @@ -86,7 +86,7 @@ class HTML_Servicio extends HTML_Table { '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', @@ -113,7 +113,7 @@ class HTML_Servicio extends HTML_Table { $s->link = 'login.php?redirect='.$s->servicio; 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 +121,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 +129,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 +137,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