-foreach (AI_Sistema::getSistemas($db) as $sistema) {
- $t->addRow(
- array($sistema->icono, $sistema->nombre, $sistema->descripcion),
- array('bgcolor' => '#FF0000')
- );
+$pct = intval(100/COLUMNAS) . '%';
+$sistema = @array_shift($sistemas);
+while ($sistema) {
+ $row = array();
+ for ($j = 0; $j < COLUMNAS; $j++) {
+ if ($sistema) {
+ $img = new HTML_Image(
+ "/sistemas/intranet/images/$sistema->icono",
+ $sistema->nombre,
+ array(
+ 'title' => $sistema->descripcion,
+ 'border' => 0,
+ '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>')
+ : '');
+ $sistema = @array_shift($sistemas);
+ } else {
+ $row[] = ' ';
+ }
+ }
+ $t->addRow($row, array('width' => $pct));