X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/aa4c4c45d35dfb51f40f9f04b68de2047f57f634..0505d35b40c4819ffb0a94b557ef7c614c3545a5:/sistema/www/sistemas.php diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index 0bebcda..d4d61e2 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -1,11 +1,16 @@ icono", $sistema->nombre, array( @@ -41,12 +46,27 @@ while ($sistema) { 'align' => 'absmiddle', ) ); - $row[] = $img->toHtml().' '.$sistema->nombre - . '
' . $sistema->descripcion - . ($sistema->link_ayuda - ? (' (?)') - : ''); + $link = new MECON_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 MECON_HTML_Link( + $sistema->link_ayuda, + '(?)', + array(), + array('target' => '_blank') + ); + $html .= $link->toHtml(); + } + $row[] = $html; $sistema = @array_shift($sistemas); } else { $row[] = ' ';