]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/sistemas.php
- Se agrega el chequeo para saber si se esta actualizando la informacion de
[mecon/intranet.git] / sistema / www / sistemas.php
index 98512a82308b0a6fa9d77b8b28a0bf0da766a5f4..dbc1d3773f66913a6a02ac3e3dc74d7c57cc4d2b 100644 (file)
@@ -1,18 +1,19 @@
 <?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']))
 {
-  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 'DB.php';
 require_once 'AI/Sistema.php';
+require_once 'HTML_Mensaje.php';
 
 define('COLUMNAS', 3);
 
@@ -51,16 +52,57 @@ $img->updateAttributes(array('width' => 190));
 $fila[] = $img;
 $t->addRow($fila);
 
-$db = IntranetDB::connect();
-$sistemas = AI_Sistema::getSistemas($db);
+$sists = AI_Sistema::getSistemas($DB);
 
-//$pct = intval(100/COLUMNAS) . '%';
+// Me fijo que sistemas puede ver este usuario.
+require_once 'SAMURAI/Perm.php';
+require_once 'SAMURAI/constantes.php';
+$perm = new SAMURAI_Perm($_SESSION['usuario'], 0, $DB);
+$samurai = false;
+$sistemas = array();
+foreach ($sists as $id => $s) {
+    // Agrego los sistemas en los que tiene permiso.
+    $perm->setSistema($s->sistema);
+    if ($perm->tiene()) {
+        // Si es SAMURAI hay que ver si ya no lo agregamos antes.
+        if ($id == SAMURAI_PERM) {
+            if (!$samurai) {
+                $samurai = true;
+                $sistemas[] = $sists[$id];
+            }
+        } else { // Si no es SAMURAI lo agregamos incondicionalmente.
+            $sistemas[] = $sists[$id];
+        }
+    }
+    // Si tiene permisos de SAMURAI en un sistema, hay que mostrar un link a
+    // SAMURAI.
+    if (!$samurai and $perm->tiene(SAMURAI_PERM_PERFIL_ALTA,
+            SAMURAI_PERM_PERFIL_BAJA, SAMURAI_PERM_PERFIL_MODIF,
+            SAMURAI_PERM_USUARIO_ALTA, SAMURAI_PERM_USUARIO_BAJA,
+            SAMURAI_PERM_USUARIO_MODIF)) {
+        $samurai = true;
+        if (@$sists[SAMURAI_PERM]) {
+            $sistemas[] = $sists[SAMURAI_PERM];
+        }
+    }
+}
+unset($sists);
+unset($samurai);
+
+if (!$sistemas) {
+    $t = new HTML_Mensaje('denegado',
+            'No tiene permisos para usar ningĂșn sistema', 370);
+}
 $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(
@@ -69,12 +111,26 @@ while ($sistema) {
                         'height' => '46',
                     )
             );
+                       $row[] = new MECON_HTML_Link(
+                               $url,
+                $img,
+                               array(),
+                       array(
+                    'OnClick' =>
+                        "javascript:window.open('$url','s{$sistema->sistema}',"
+                        . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
+                                   'target' => '_blank',
+                               )
+                   );
             $row[] = '&nbsp;';
                        $link = new MECON_HTML_Link(
-                               $sistema->link,
+                               $url,
                 $sistema->nombre,
                                array(),
                        array(
+                    'OnClick' =>
+                        "javascript:window.open('$url','s{$sistema->sistema}',"
+                        . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
                                    'target' => '_blank',
                     'class' => 'intranet_sistemas_txt',
                                )
@@ -91,8 +147,11 @@ while ($sistema) {
                                        $img,
                                        array(),
                                        array(
+                        'OnClick' =>
+                            "javascript:window.open('{$sistema->link_ayuda}',"
+                            . "'sa{$sistema->sistema}',"
+                            . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
                         'target' => '_blank',
-                        'class' => 'intranet_sistemas_txt',
                     )
                                );
                 $html .= $link->toHtml();
@@ -113,22 +172,16 @@ while ($sistema) {
 }
 
 $m = new HTML_DietMarco('sistemas', 'Sistemas');
-$m->addTitle('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;
+        color: #003366;
+        font-family: Arial, Helvetica, sans-serif;
+        font-size: 10pt;
     }
     A.intranet_sistemas_txt {
         font-weight: bold;
+        text-decoration: none;
     }'
 );
 $m->addBodyContent($t);