X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/49cc080e37b402e92f8be7b70d7c9acefa9e43db..a107bd2a434176227f6500ae6013866c9ea0ee3a:/sistema/www/sistemas.php?ds=inline diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index 726f586..c495164 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -1,31 +1,74 @@ '100%', 'cellspacing' => '0', 'cellpadding' => '0', 'border' => '0', + 'align' => 'left', + 'valign' => 'middle', ) ); -$db = AI_DB::connect('../conf/AI_DB.ini'); -$sistemas = ; +$db = IntranetDB::connect(); +$sistemas = AI_Sistema::getSistemas($db); -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', + ) + ); + $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[] = ' '; + } + } + $t->addRow($row, array('width' => $pct)); } $m = new HTML_DietMarco('sistemas');