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 //$pct = intval(100/COLUMNAS) . '%';
58 $sistema = @array_shift($sistemas);
61 for ($j = 1; $j <= COLUMNAS; $j++) {
63 $img = new MECON_HTML_Image(
64 "/sistemas/intranet/images/$sistema->icono",
72 $row[] = new MECON_HTML_Link(
81 $link = new MECON_HTML_Link(
87 'class' => 'intranet_sistemas_txt',
90 $html = $link->toHtml() . ': ' . $sistema->descripcion;
91 if ($sistema->link_ayuda) {
93 $img = new MECON_HTML_Image(
94 '/sistemas/intranet/images/sistemas_ayuda',
97 $link = new MECON_HTML_Link(
102 'target' => '_blank',
105 $html .= $link->toHtml();
108 $sistema = @array_shift($sistemas);
114 if ($j % (COLUMNAS)) {
118 $t->addRow(array(' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '));
119 $t->addRow($row, array('class' => 'intranet_sistemas_txt'));
122 $m = new HTML_DietMarco('sistemas', 'Sistemas');
123 $m->addTitle('Sistemas');
124 $m->addStyleDeclaration('
125 .intranet_sistemas_txt {
127 font-family: Arial, Helvetica, sans-serif;
130 A.intranet_sistemas_txt {
132 text-decoration: none;
135 $m->addBodyContent($t);