]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/sistemas.php
Correccion al arbol una_noticia
[mecon/intranet.git] / sistema / www / sistemas.php
index 5e51dbcc12b1e0d3ebd65817b36922d58c30927e..40c6bcea512d65e3a323e565f06b646a35536e12 100644 (file)
@@ -54,12 +54,26 @@ $t->addRow($fila);
 $db = IntranetDB::connect();
 $sistemas = AI_Sistema::getSistemas($db);
 
-//$pct = intval(100/COLUMNAS) . '%';
+// 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]);
+    }
+}
+
 $sistema = @array_shift($sistemas);
 while ($sistema) {
     $row = array();
     for ($j = 1; $j <= COLUMNAS; $j++) {
         if ($sistema) {
+            $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,
@@ -70,19 +84,25 @@ while ($sistema) {
                     )
             );
                        $row[] = new MECON_HTML_Link(
-                               $sistema->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(
-                               $sistema->link,
+                               $url,
                 $sistema->nombre,
                                array(),
                        array(
+                    'OnClick' =>
+                        "javascript:window.open('$url','s{$sistema->sistema}',"
+                        . "'width=790,height=500,scrollbars=yes');return false;",
                                    'target' => '_blank',
                     'class' => 'intranet_sistemas_txt',
                                )
@@ -99,6 +119,10 @@ while ($sistema) {
                                        $img,
                                        array(),
                                        array(
+                        'OnClick' =>
+                            "javascript:window.open('{$sistema->link_ayuda}',"
+                            . "'sa{$sistema->sistema}',"
+                            . "'width=790,height=500,scrollbars=yes');return false;",
                         'target' => '_blank',
                     )
                                );
@@ -120,7 +144,7 @@ while ($sistema) {
 }
 
 $m = new HTML_DietMarco('sistemas', 'Sistemas');
-$m->addTitle('Sistemas');
+//$m->addTitle('Sistemas');
 $m->addStyleDeclaration('
     .intranet_sistemas_txt {
         color: #003366;