2 // vim: set binary expandtab ts=4 shiftwidth=4 textwidth=80:
4 require_once 'HTML_DietMarco.php';
5 if(!isset($_SESSION['usuario']))
7 header('location: login?redirect=sistemas');
10 require_once 'intranetdb.php';
11 require_once 'HTML/Table.php';
12 require_once 'MECON/HTML/Link.php';
13 require_once 'MECON/HTML/Image.php';
14 require_once 'DB.php';
15 require_once 'AI/Sistema.php';
17 define('COLUMNAS', 3);
28 // Agrego fila con espaciados.
29 $img = new MECON_HTML_Image('/MECON/images/blanco', '', array('height' => 1));
30 $img->updateAttributes(array('width' => 46));
32 $img->updateAttributes(array('width' => 4));
34 $img->updateAttributes(array('width' => 190));
36 $img->updateAttributes(array('width' => 20));
38 $img->updateAttributes(array('width' => 46));
40 $img->updateAttributes(array('width' => 4));
42 $img->updateAttributes(array('width' => 190));
44 $img->updateAttributes(array('width' => 20));
46 $img->updateAttributes(array('width' => 46));
48 $img->updateAttributes(array('width' => 4));
50 $img->updateAttributes(array('width' => 190));
54 $sists = AI_Sistema::getSistemas($DB);
56 // Me fijo que sistemas puede ver este usuario.
57 require_once 'SAMURAI/Perm.php';
58 require_once 'SAMURAI/constantes.php';
59 $perm = new SAMURAI_Perm($_SESSION['usuario'], 0, $DB);
62 foreach ($sists as $id => $s) {
63 // Agrego los sistemas en los que tiene permiso.
64 $perm->setSistema($s->sistema);
66 // Si es SAMURAI hay que ver si ya no lo agregamos antes.
67 if ($id == SAMURAI_PERM) {
70 $sistemas[] = $sists[$id];
72 } else { // Si no es SAMURAI lo agregamos incondicionalmente.
73 $sistemas[] = $sists[$id];
76 // Si tiene permisos de SAMURAI en un sistema, hay que mostrar un link a
78 if (!$samurai and $perm->tiene(SAMURAI_PERM_PERFIL_ALTA,
79 SAMURAI_PERM_PERFIL_BAJA, SAMURAI_PERM_PERFIL_MODIF,
80 SAMURAI_PERM_USUARIO_ALTA, SAMURAI_PERM_USUARIO_BAJA,
81 SAMURAI_PERM_USUARIO_MODIF)) {
83 if (@$sists[SAMURAI_PERM]) {
84 $sistemas[] = $sists[SAMURAI_PERM];
91 $sistema = @array_shift($sistemas);
94 for ($j = 1; $j <= COLUMNAS; $j++) {
96 $url = $sistema->link;
97 if ($sistema->tipo == 'embperl') {
98 $url = '/Php2Embperl_Session?redirect=' . urlencode($url);
100 $img = new MECON_HTML_Image(
101 "/sistemas/intranet/images/$sistema->icono",
109 $row[] = new MECON_HTML_Link(
115 "javascript:window.open('$url','s{$sistema->sistema}',"
116 . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
117 'target' => '_blank',
121 $link = new MECON_HTML_Link(
127 "javascript:window.open('$url','s{$sistema->sistema}',"
128 . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
129 'target' => '_blank',
130 'class' => 'intranet_sistemas_txt',
133 $html = $link->toHtml() . ': ' . $sistema->descripcion;
134 if ($sistema->link_ayuda) {
136 $img = new MECON_HTML_Image(
137 '/sistemas/intranet/images/sistemas_ayuda',
140 $link = new MECON_HTML_Link(
141 $sistema->link_ayuda,
146 "javascript:window.open('{$sistema->link_ayuda}',"
147 . "'sa{$sistema->sistema}',"
148 . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;",
149 'target' => '_blank',
152 $html .= $link->toHtml();
155 $sistema = @array_shift($sistemas);
161 if ($j % (COLUMNAS)) {
165 $t->addRow(array(' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '));
166 $t->addRow($row, array('class' => 'intranet_sistemas_txt'));
169 $m = new HTML_DietMarco('sistemas', 'Sistemas');
170 //$m->addTitle('Sistemas');
171 $m->addStyleDeclaration('
172 .intranet_sistemas_txt {
174 font-family: Arial, Helvetica, sans-serif;
177 A.intranet_sistemas_txt {
179 text-decoration: none;
182 $m->addBodyContent($t);