X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/aa4c4c45d35dfb51f40f9f04b68de2047f57f634..1f70b230e314ae148be361dc98b9ce40792f7b7e:/sistema/www/sistemas.php?ds=sidebyside
diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php
index 0bebcda..c495164 100644
--- a/sistema/www/sistemas.php
+++ b/sistema/www/sistemas.php
@@ -1,11 +1,12 @@
'absmiddle',
)
);
- $row[] = $img->toHtml().' '.$sistema->nombre
- . '
' . $sistema->descripcion
- . ($sistema->link_ayuda
- ? (' (?)')
- : '');
+ $link = new HTML_Link(
+ $sistema->link,
+ $sistema->nombre,
+ array(),
+ array(
+ 'title' => $sistema->descripcion,
+ 'target' => '_blank',
+ )
+ );
+ $html = $img->toHtml() . $link->toHtml() . '
'
+ . $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[] = ' ';