X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/1713650def781c16aadfd73bd9d085a1f50138c3..aa4c4c45d35dfb51f40f9f04b68de2047f57f634:/sistema/www/sistemas.php?ds=sidebyside
diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php
index 2ec1d8a..0bebcda 100644
--- a/sistema/www/sistemas.php
+++ b/sistema/www/sistemas.php
@@ -1,19 +1,63 @@
-
- require_once '../local_lib/HTML_DietMarco.php';
- require_once '../local_lib/intranetdb.php';
- require_once 'MECON/HTML/Arbol/ArbolDB.php';
- $m = new HTML_DietMarco('sistemas');
- $m->addTitle('Sistemas');
-
- $db = IntranetDB::connect();
- $dbdata = array(
- 'db' => $db,
- 'tabla' => 'sistema',
- 'id' => 'sistema',
- 'nombre' => 'sistema',
- 'link' => 'link');
- $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
-
- $m->addBodyContent($arbol);
- $m->display();
+ '100%',
+ 'cellspacing' => '0',
+ 'cellpadding' => '0',
+ 'border' => '0',
+ 'align' => 'left',
+ 'valign' => 'middle',
+ )
+);
+
+$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 HTML_Image(
+ "/sistemas/intranet/images/$sistema->icono",
+ $sistema->nombre,
+ array(
+ 'title' => $sistema->descripcion,
+ 'border' => 0,
+ 'align' => 'absmiddle',
+ )
+ );
+ $row[] = $img->toHtml().' '.$sistema->nombre
+ . '
' . $sistema->descripcion
+ . ($sistema->link_ayuda
+ ? (' (?)')
+ : '');
+ $sistema = @array_shift($sistemas);
+ } else {
+ $row[] = ' ';
+ }
+ }
+ $t->addRow($row, array('width' => $pct));
+}
+
+$m = new HTML_DietMarco('sistemas');
+$m->addTitle('Sistemas');
+$m->addBodyContent($t);
+$m->display();
+
?>