]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/sistemas.php
- Primera version semi-funcional de bandas. Otros cambios que no tengo idea de que...
[mecon/intranet.git] / sistema / www / sistemas.php
index c4951646f8a0ceaf16d7cedb0f72ed6f9fe2ace7..d3edfbccfd8fb4b1a97546acea93da015cc98417 100644 (file)
@@ -1,26 +1,28 @@
 <?php
 // vim: set binary expandtab ts=4 shiftwidth=4 textwidth=80:
 // $Id$
 <?php
 // vim: set binary expandtab ts=4 shiftwidth=4 textwidth=80:
 // $Id$
-
 require_once '../local_lib/HTML_DietMarco.php';
 require_once '../local_lib/HTML_DietMarco.php';
+if(!isset($_SESSION['usuario']))
+{
+  header('location: login?redirect=sistemas');
+  exit;
+}
 require_once '../local_lib/intranetdb.php';
 require_once '../local_lib/intranetdb.php';
-require_once 'MECON/HTML/Arbol/ArbolDB.php';
 require_once 'HTML/Table.php';
 require_once 'HTML/Table.php';
-require_once 'HTML/Link.php';
+require_once 'MECON/HTML/Link.php';
+require_once 'MECON/HTML/Image.php';
 #require_once 'AI/DB.php';
 require_once 'DB.php';
 require_once 'AI/Sistema.php';
 
 #require_once 'AI/DB.php';
 require_once 'DB.php';
 require_once 'AI/Sistema.php';
 
-define('COLUMNAS', 3);
+define('COLUMNAS', 2);
 
 $t = new HTML_Table(
     array(
 
 $t = new HTML_Table(
     array(
-        'width'         => '100%',
-        'cellspacing'   => '0',
+        'width'         => '760',
+        'cellspacing'   => '10',
         'cellpadding'   => '0',
         'border'        => '0',
         'cellpadding'   => '0',
         'border'        => '0',
-        'align'         => 'left',
-        'valign'        => 'middle',
     )
 );
 
     )
 );
 
@@ -33,16 +35,16 @@ while ($sistema) {
     $row = array();
     for ($j = 0; $j < COLUMNAS; $j++) {
         if ($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,
                     "/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(),
                                $sistema->link,
                                $sistema->nombre,
                                array(),
@@ -54,7 +56,7 @@ while ($sistema) {
             $html = $img->toHtml() . $link->toHtml() . '<BR>'
                        . $sistema->descripcion;
                if ($sistema->link_ayuda) {
             $html = $img->toHtml() . $link->toHtml() . '<BR>'
                        . $sistema->descripcion;
                if ($sistema->link_ayuda) {
-                       $link = new HTML_Link(
+                       $link = new MECON_HTML_Link(
                                        $sistema->link_ayuda,
                                        '(?)',
                                        array(),
                                        $sistema->link_ayuda,
                                        '(?)',
                                        array(),
@@ -68,7 +70,7 @@ while ($sistema) {
             $row[] = '&nbsp;';
         }
     }
             $row[] = '&nbsp;';
         }
     }
-    $t->addRow($row, array('width' => $pct));
+    $t->addRow($row, array('width' => $pct, 'valign' => 'top'));
 }
 
 $m = new HTML_DietMarco('sistemas');
 }
 
 $m = new HTML_DietMarco('sistemas');