//
-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';
$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',
'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',
$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));
}
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;
}
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, '');
$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