X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/415df11d749714d417f706c73753dd42ca2323af..20d4a7ba7b9c030db66d4f655caa4cc481a509ae:/sistema/www/sistemas.php?ds=sidebyside diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index c495164..d3edfbc 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -1,26 +1,28 @@ '100%', - 'cellspacing' => '0', + 'width' => '760', + 'cellspacing' => '10', 'cellpadding' => '0', 'border' => '0', - 'align' => 'left', - 'valign' => 'middle', ) ); @@ -33,16 +35,16 @@ while ($sistema) { $row = array(); for ($j = 0; $j < COLUMNAS; $j++) { if ($sistema) { - $img = new HTML_Image( + $img = new MECON_HTML_Image( "/sistemas/intranet/images/$sistema->icono", $sistema->nombre, array( 'title' => $sistema->descripcion, 'border' => 0, - 'align' => 'absmiddle', + 'align' => 'middle', ) ); - $link = new HTML_Link( + $link = new MECON_HTML_Link( $sistema->link, $sistema->nombre, array(), @@ -54,7 +56,7 @@ while ($sistema) { $html = $img->toHtml() . $link->toHtml() . '
' . $sistema->descripcion; if ($sistema->link_ayuda) { - $link = new HTML_Link( + $link = new MECON_HTML_Link( $sistema->link_ayuda, '(?)', array(), @@ -68,7 +70,7 @@ while ($sistema) { $row[] = ' '; } } - $t->addRow($row, array('width' => $pct)); + $t->addRow($row, array('width' => $pct, 'valign' => 'top')); } $m = new HTML_DietMarco('sistemas');