2 // vim: set binary expandtab ts=4 shiftwidth=4 textwidth=80:
4 require_once '../local_lib/HTML_DietMarco.php';
5 if(!isset($_SESSION['usuario']))
7 header('location: login?redirect=sistemas');
10 require_once '../local_lib/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 $db = IntranetDB::connect();
55 $sistemas = AI_Sistema::getSistemas($db);
57 // Me fijo que sistemas puede ver este usuario.
58 require_once 'SAMURAI/Perm.php';
59 $perm = new SAMURAI_Perm($_SESSION['usuario'], 0, $db);
60 foreach ($sistemas as $i => $s) {
61 // Si no tiene permisos para el sistema, lo saco de la lista.
62 $perm->setSistema($s->sistema);
63 if (!$perm->tiene()) {
68 $sistema = @array_shift($sistemas);
71 for ($j = 1; $j <= COLUMNAS; $j++) {
73 $url = $sistema->link;
74 if ($sistema->tipo == 'embperl') {
75 $url = '/Php2Embperl_Session?redirect=' . urlencode($url);
77 $img = new MECON_HTML_Image(
78 "/sistemas/intranet/images/$sistema->icono",
86 $row[] = new MECON_HTML_Link(
92 "javascript:window.open('$url','s{$sistema->sistema}',"
93 . "'width=800,height=600,scrollbars=yes');return false;",
98 $link = new MECON_HTML_Link(
104 "javascript:window.open('$url','s{$sistema->sistema}',"
105 . "'width=800,height=600,scrollbars=yes');return false;",
106 'target' => '_blank',
107 'class' => 'intranet_sistemas_txt',
110 $html = $link->toHtml() . ': ' . $sistema->descripcion;
111 if ($sistema->link_ayuda) {
113 $img = new MECON_HTML_Image(
114 '/sistemas/intranet/images/sistemas_ayuda',
117 $link = new MECON_HTML_Link(
118 $sistema->link_ayuda,
123 "javascript:window.open('{$sistema->link_ayuda}',"
124 . "'sa{$sistema->sistema}',"
125 . "'width=800,height=600,scrollbars=yes');return false;",
126 'target' => '_blank',
129 $html .= $link->toHtml();
132 $sistema = @array_shift($sistemas);
138 if ($j % (COLUMNAS)) {
142 $t->addRow(array(' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '));
143 $t->addRow($row, array('class' => 'intranet_sistemas_txt'));
146 $m = new HTML_DietMarco('sistemas', 'Sistemas');
147 $m->addTitle('Sistemas');
148 $m->addStyleDeclaration('
149 .intranet_sistemas_txt {
151 font-family: Arial, Helvetica, sans-serif;
154 A.intranet_sistemas_txt {
156 text-decoration: none;
159 $m->addBodyContent($t);