]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/sistemas.php
Primera versiĆ³n funcional del listado de sistemas. Falta retocar el look&feel pero...
[mecon/intranet.git] / sistema / www / sistemas.php
index 2ec1d8abae8bed95660013e576473c65fec8e8e0..0bebcda6a37aeb3d4b705ddb0678879aecda7ca1 100644 (file)
@@ -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();
+<?php
+
+// $Id$
+
+require_once '../local_lib/HTML_DietMarco.php';
+require_once '../local_lib/intranetdb.php';
+require_once 'MECON/HTML/Arbol/ArbolDB.php';
+require_once 'HTML/Table.php';
+#require_once 'AI/DB.php';
+require_once 'DB.php';
+require_once 'AI/Sistema.php';
+
+define('COLUMNAS', 3);
+
+$t = new HTML_Table(
+    array(
+        'width'         => '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().' <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[] = '&nbsp;';
+        }
+    }
+    $t->addRow($row, array('width' => $pct));
+}
+
+$m = new HTML_DietMarco('sistemas');
+$m->addTitle('Sistemas');
+$m->addBodyContent($t);
+$m->display();
+    
 ?>
 ?>