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 'AI/DB.php';
15 require_once 'DB.php';
16 require_once 'AI/Sistema.php';
18 define('COLUMNAS', 2);
23 'cellspacing' => '10',
29 $db = IntranetDB::connect();
30 $sistemas = AI_Sistema::getSistemas($db);
32 $pct = intval(100/COLUMNAS) . '%';
33 $sistema = @array_shift($sistemas);
36 for ($j = 0; $j < COLUMNAS; $j++) {
38 $img = new MECON_HTML_Image(
39 "/sistemas/intranet/images/$sistema->icono",
42 'title' => $sistema->descripcion,
47 $link = new MECON_HTML_Link(
52 'title' => $sistema->descripcion,
56 $html = $img->toHtml() . $link->toHtml() . '<BR>'
57 . $sistema->descripcion;
58 if ($sistema->link_ayuda) {
59 $link = new MECON_HTML_Link(
63 array('target' => '_blank')
65 $html .= $link->toHtml();
68 $sistema = @array_shift($sistemas);
73 $t->addRow($row, array('width' => $pct, 'valign' => 'top'));
76 $m = new HTML_DietMarco('sistemas');
77 $m->addTitle('Sistemas');
78 $m->addBodyContent($t);