]> git.llucax.com Git - mecon/intranet.git/commitdiff
Se termina de acomodar el look&feel de sistemas.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 10 Sep 2003 22:31:23 +0000 (22:31 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 10 Sep 2003 22:31:23 +0000 (22:31 +0000)
sistema/www/images/sistemas_ayuda.gif [new file with mode: 0644]
sistema/www/sistemas.php

diff --git a/sistema/www/images/sistemas_ayuda.gif b/sistema/www/images/sistemas_ayuda.gif
new file mode 100644 (file)
index 0000000..57fe038
Binary files /dev/null and b/sistema/www/images/sistemas_ayuda.gif differ
index d3edfbccfd8fb4b1a97546acea93da015cc98417..a4498ecf39bd04b30ca1709517a7d9596201f153 100644 (file)
@@ -11,70 +11,127 @@ require_once '../local_lib/intranetdb.php';
 require_once 'HTML/Table.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';
 
-define('COLUMNAS', 2);
+define('COLUMNAS', 3);
 
 $t = new HTML_Table(
     array(
         'width'         => '760',
-        'cellspacing'   => '10',
+        'cellspacing'   => '0',
         'cellpadding'   => '0',
         'border'        => '0',
     )
 );
 
+// Agrego fila con espaciados.
+$img = new MECON_HTML_Image('/MECON/images/blanco', '', array('height' => 1));
+$img->updateAttributes(array('width' => 46));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 4));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 190));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 20));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 46));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 4));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 190));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 20));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 46));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 4));
+$fila[] = $img;
+$img->updateAttributes(array('width' => 190));
+$fila[] = $img;
+$t->addRow($fila);
+
 $db = IntranetDB::connect();
 $sistemas = AI_Sistema::getSistemas($db);
 
-$pct = intval(100/COLUMNAS) . '%';
+//$pct = intval(100/COLUMNAS) . '%';
 $sistema = @array_shift($sistemas);
 while ($sistema) {
     $row = array();
-    for ($j = 0; $j < COLUMNAS; $j++) {
+    for ($j = 1; $j <= COLUMNAS; $j++) {
         if ($sistema) {
-            $img = new MECON_HTML_Image(
+            $row[] = new MECON_HTML_Image(
                     "/sistemas/intranet/images/$sistema->icono",
                     $sistema->nombre,
                     array(
                         'title'  => $sistema->descripcion,
                         'border' => 0,
-                        'align'  => 'middle',
+                        'width'  => '46',
+                        'height' => '46',
                     )
             );
+            $row[] = '&nbsp;';
                        $link = new MECON_HTML_Link(
                                $sistema->link,
-                               $sistema->nombre,
+                $sistema->nombre,
                                array(),
                        array(
                                    'title'  => $sistema->descripcion,
                                    'target' => '_blank',
+                    'class' => 'intranet_sistemas_txt',
                                )
                    );
-            $html = $img->toHtml() . $link->toHtml() . '<BR>'
-                       . $sistema->descripcion;
+            $html = $link->toHtml();
                if ($sistema->link_ayuda) {
+                $html .= '&nbsp;';
+                $img = new MECON_HTML_Image(
+                        '/sistemas/intranet/images/sistemas_ayuda',
+                        '(?)'
+                );
                        $link = new MECON_HTML_Link(
                                        $sistema->link_ayuda,
-                                       '(?)',
+                                       $img,
                                        array(),
-                                       array('target' => '_blank')
+                                       array(
+                        'target' => '_blank',
+                        'class' => 'intranet_sistemas_txt',
+                    )
                                );
-                               $html .= $link->toHtml();
+                $html .= $link->toHtml();
                        }
             $row[] = $html;
             $sistema = @array_shift($sistemas);
         } else {
             $row[] = '&nbsp;';
+            $row[] = '&nbsp;';
+            $row[] = '&nbsp;';
+        }
+        if ($j % (COLUMNAS)) {
+            $row[] = '&nbsp;';
         }
     }
-    $t->addRow($row, array('width' => $pct, 'valign' => 'top'));
+    $t->addRow(array('&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;'));
+    $t->addRow($row);
 }
 
+
+
 $m = new HTML_DietMarco('sistemas');
 $m->addTitle('Sistemas');
+$m->addStyleDeclaration('
+    .intranet_sistemas_txt {
+        COLOR: #003366;
+        FONT-FAMILY: Arial, Helvetica, sans-serif;
+        FONT-SIZE: 10pt;
+        FONT-WEIGHT: normal;
+        font-style: normal;
+        line-height: normal;
+        background-position: left centre;
+        text-align: left;
+        vertical-align: middle;
+        text-decoration: none;
+    }'
+);
 $m->addBodyContent($t);
 $m->display();