]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/sistemas.php
Se corrige un bug.
[mecon/intranet.git] / sistema / www / sistemas.php
index a4498ecf39bd04b30ca1709517a7d9596201f153..aa741634545ac6d23b9bbafa60733989689da204 100644 (file)
@@ -1,13 +1,13 @@
 <?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 'HTML_DietMarco.php';
 if(!isset($_SESSION['usuario']))
 {
 if(!isset($_SESSION['usuario']))
 {
-  header('location: login?redirect=sistemas');
-  exit;
+    header('location: login?redirect=sistemas');
+    exit;
 }
 }
-require_once '../local_lib/intranetdb.php';
+require_once 'intranetdb.php';
 require_once 'HTML/Table.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'HTML/Table.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/HTML/Image.php';
@@ -51,37 +51,62 @@ $img->updateAttributes(array('width' => 190));
 $fila[] = $img;
 $t->addRow($fila);
 
 $fila[] = $img;
 $t->addRow($fila);
 
-$db = IntranetDB::connect();
-$sistemas = AI_Sistema::getSistemas($db);
+$sistemas = AI_Sistema::getSistemas($DB);
+
+// Me fijo que sistemas puede ver este usuario.
+require_once 'SAMURAI/Perm.php';
+$perm = new SAMURAI_Perm($_SESSION['usuario'], 0, $DB);
+foreach ($sistemas as $i => $s) {
+    // Si no tiene permisos para el sistema, lo saco de la lista.
+    $perm->setSistema($s->sistema);
+    if (!$perm->tiene()) {
+        unset($sistemas[$i]);
+    }
+}
 
 
-//$pct = intval(100/COLUMNAS) . '%';
 $sistema = @array_shift($sistemas);
 while ($sistema) {
     $row = array();
     for ($j = 1; $j <= COLUMNAS; $j++) {
         if ($sistema) {
 $sistema = @array_shift($sistemas);
 while ($sistema) {
     $row = array();
     for ($j = 1; $j <= COLUMNAS; $j++) {
         if ($sistema) {
-            $row[] = new MECON_HTML_Image(
+            $url = $sistema->link;
+            if ($sistema->tipo == 'embperl') {
+                $url = '/Php2Embperl_Session?redirect=' . urlencode($url);
+            }
+            $img = new MECON_HTML_Image(
                     "/sistemas/intranet/images/$sistema->icono",
                     $sistema->nombre,
                     array(
                     "/sistemas/intranet/images/$sistema->icono",
                     $sistema->nombre,
                     array(
-                        'title'  => $sistema->descripcion,
                         'border' => 0,
                         'width'  => '46',
                         'height' => '46',
                     )
             );
                         'border' => 0,
                         'width'  => '46',
                         'height' => '46',
                     )
             );
+                       $row[] = new MECON_HTML_Link(
+                               $url,
+                $img,
+                               array(),
+                       array(
+                    'OnClick' =>
+                        "javascript:window.open('$url','s{$sistema->sistema}',"
+                        . "'width=790,height=500,scrollbars=yes');return false;",
+                                   'target' => '_blank',
+                               )
+                   );
             $row[] = '&nbsp;';
                        $link = new MECON_HTML_Link(
             $row[] = '&nbsp;';
                        $link = new MECON_HTML_Link(
-                               $sistema->link,
+                               $url,
                 $sistema->nombre,
                                array(),
                        array(
                 $sistema->nombre,
                                array(),
                        array(
-                                   'title'  => $sistema->descripcion,
+                    'OnClick' =>
+                        "javascript:window.open('$url','s{$sistema->sistema}',"
+                        . "'width=790,height=500,scrollbars=yes');return false;",
                                    'target' => '_blank',
                     'class' => 'intranet_sistemas_txt',
                                )
                    );
                                    'target' => '_blank',
                     'class' => 'intranet_sistemas_txt',
                                )
                    );
-            $html = $link->toHtml();
+            $html = $link->toHtml() . ': ' . $sistema->descripcion;
                if ($sistema->link_ayuda) {
                 $html .= '&nbsp;';
                 $img = new MECON_HTML_Image(
                if ($sistema->link_ayuda) {
                 $html .= '&nbsp;';
                 $img = new MECON_HTML_Image(
@@ -93,8 +118,11 @@ while ($sistema) {
                                        $img,
                                        array(),
                                        array(
                                        $img,
                                        array(),
                                        array(
+                        'OnClick' =>
+                            "javascript:window.open('{$sistema->link_ayuda}',"
+                            . "'sa{$sistema->sistema}',"
+                            . "'width=790,height=500,scrollbars=yes');return false;",
                         'target' => '_blank',
                         'target' => '_blank',
-                        'class' => 'intranet_sistemas_txt',
                     )
                                );
                 $html .= $link->toHtml();
                     )
                                );
                 $html .= $link->toHtml();
@@ -111,24 +139,19 @@ while ($sistema) {
         }
     }
     $t->addRow(array('&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;'));
         }
     }
     $t->addRow(array('&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;'));
-    $t->addRow($row);
+    $t->addRow($row, array('class' => 'intranet_sistemas_txt'));
 }
 
 }
 
-
-
-$m = new HTML_DietMarco('sistemas');
-$m->addTitle('Sistemas');
+$m = new HTML_DietMarco('sistemas', 'Sistemas');
+//$m->addTitle('Sistemas');
 $m->addStyleDeclaration('
     .intranet_sistemas_txt {
 $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;
+        color: #003366;
+        font-family: Arial, Helvetica, sans-serif;
+        font-size: 10pt;
+    }
+    A.intranet_sistemas_txt {
+        font-weight: bold;
         text-decoration: none;
     }'
 );
         text-decoration: none;
     }'
 );