+// 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);
+
+$sists = AI_Sistema::getSistemas($DB);
+
+// 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);