require_once 'MECON/HTML/Image.php';
require_once 'DB.php';
require_once 'AI/Sistema.php';
+require_once 'HTML_Mensaje.php';
define('COLUMNAS', 3);
$perm = new SAMURAI_Perm($_SESSION['usuario'], 0, $DB);
$samurai = false;
$sistemas = array();
-foreach ($sists as $i => $s) {
+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 ($s->sistema == SAMURAI_PERM) {
+ if ($id == SAMURAI_PERM) {
if (!$samurai) {
$samurai = true;
- $sistemas[] = $sists[$i];
+ $sistemas[] = $sists[$id];
}
} else { // Si no es SAMURAI lo agregamos incondicionalmente.
- $sistemas[] = $sists[$i];
+ $sistemas[] = $sists[$id];
}
}
// Si tiene permisos de SAMURAI en un sistema, hay que mostrar un link a
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();
array(
'OnClick' =>
"javascript:window.open('$url','s{$sistema->sistema}',"
- . "'width=790,height=500,scrollbars=yes');return false;",
+ . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
'target' => '_blank',
)
);
array(
'OnClick' =>
"javascript:window.open('$url','s{$sistema->sistema}',"
- . "'width=790,height=500,scrollbars=yes');return false;",
+ . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
'target' => '_blank',
'class' => 'intranet_sistemas_txt',
)
'OnClick' =>
"javascript:window.open('{$sistema->link_ayuda}',"
. "'sa{$sistema->sistema}',"
- . "'width=790,height=500,scrollbars=yes');return false;",
+ . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
'target' => '_blank',
)
);