<?php
-
+// vim: set binary expandtab ts=4 shiftwidth=4 textwidth=80:
// $Id$
require_once '../local_lib/HTML_DietMarco.php';
require_once '../local_lib/intranetdb.php';
require_once 'MECON/HTML/Arbol/ArbolDB.php';
require_once 'HTML/Table.php';
+require_once 'HTML/Link.php';
#require_once 'AI/DB.php';
require_once 'DB.php';
require_once 'AI/Sistema.php';
'align' => 'absmiddle',
)
);
- $row[] = $img->toHtml().' <A href="'.$sistema->link.'" title="'
- . $sistema->descripcion.'" target="_blank">'.$sistema->nombre
- . '</A><BR>' . $sistema->descripcion
- . ($sistema->link_ayuda
- ? (' <A href="'.$sistema->link_ayuda.'" target="_blank" alt="Ayuda">(?)</A>')
- : '');
+ $link = new HTML_Link(
+ $sistema->link,
+ $sistema->nombre,
+ array(),
+ array(
+ 'title' => $sistema->descripcion,
+ 'target' => '_blank',
+ )
+ );
+ $html = $img->toHtml() . $link->toHtml() . '<BR>'
+ . $sistema->descripcion;
+ if ($sistema->link_ayuda) {
+ $link = new HTML_Link(
+ $sistema->link_ayuda,
+ '(?)',
+ array(),
+ array('target' => '_blank')
+ );
+ $html .= $link->toHtml();
+ }
+ $row[] = $html;
$sistema = @array_shift($sistemas);
} else {
$row[] = ' ';