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 $row[] = new MECON_HTML_Image(
64 "/sistemas/intranet/images/$sistema->icono",
67 'title' => $sistema->descripcion,
74 $link = new MECON_HTML_Link(
79 'title' => $sistema->descripcion,
81 'class' => 'intranet_sistemas_txt',
84 $html = $link->toHtml();
85 if ($sistema->link_ayuda) {
87 $img = new MECON_HTML_Image(
88 '/sistemas/intranet/images/sistemas_ayuda',
91 $link = new MECON_HTML_Link(
97 'class' => 'intranet_sistemas_txt',
100 $html .= $link->toHtml();
103 $sistema = @array_shift($sistemas);
109 if ($j % (COLUMNAS)) {
113 $t->addRow(array(' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '));
117 $m = new HTML_DietMarco('sistemas', 'Sistemas');
118 $m->addTitle('Sistemas');
119 $m->addStyleDeclaration('
120 .intranet_sistemas_txt {
122 FONT-FAMILY: Arial, Helvetica, sans-serif;
127 background-position: left centre;
129 vertical-align: middle;
130 text-decoration: none;
133 $m->addBodyContent($t);