'760', 'cellspacing' => '10', 'cellpadding' => '0', 'border' => '0', ) ); $db = IntranetDB::connect(); $sistemas = AI_Sistema::getSistemas($db); $pct = intval(100/COLUMNAS) . '%'; $sistema = @array_shift($sistemas); while ($sistema) { $row = array(); for ($j = 0; $j < COLUMNAS; $j++) { if ($sistema) { $img = new MECON_HTML_Image( "/sistemas/intranet/images/$sistema->icono", $sistema->nombre, array( 'title' => $sistema->descripcion, 'border' => 0, 'align' => 'middle', ) ); $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[] = ' '; } } $t->addRow($row, array('width' => $pct, 'valign' => 'top')); } $m = new HTML_DietMarco('sistemas'); $m->addTitle('Sistemas'); $m->addBodyContent($t); $m->display(); ?>