]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/sistemas.php
Se corrigio los nuevos nombres para MECON_HTML_Arbol y MECON_HTML_ArbolDB.
[mecon/intranet.git] / sistema / www / sistemas.php
1 <?php
2 // vim: set binary expandtab ts=4 shiftwidth=4 textwidth=80:
3 // $Id$
4 require_once '../local_lib/HTML_DietMarco.php';
5 if(!isset($_SESSION['usuario']))
6 {
7   header('location: login?redirect=sistemas');
8   exit;
9 }
10 require_once '../local_lib/intranetdb.php';
11 require_once 'HTML/Table.php';
12 require_once 'HTML/Link.php';
13 #require_once 'AI/DB.php';
14 require_once 'DB.php';
15 require_once 'AI/Sistema.php';
16
17 define('COLUMNAS', 3);
18
19 $t = new HTML_Table(
20     array(
21         'width'         => '100%',
22         'cellspacing'   => '0',
23         'cellpadding'   => '0',
24         'border'        => '0',
25         'align'         => 'left',
26         'valign'        => 'middle',
27     )
28 );
29
30 $db = IntranetDB::connect();
31 $sistemas = AI_Sistema::getSistemas($db);
32
33 $pct = intval(100/COLUMNAS) . '%';
34 $sistema = @array_shift($sistemas);
35 while ($sistema) {
36     $row = array();
37     for ($j = 0; $j < COLUMNAS; $j++) {
38         if ($sistema) {
39             $img = new HTML_Image(
40                     "/sistemas/intranet/images/$sistema->icono",
41                     $sistema->nombre,
42                     array(
43                         'title'  => $sistema->descripcion,
44                         'border' => 0,
45                         'align'  => 'absmiddle',
46                     )
47             );
48                         $link = new HTML_Link(
49                                 $sistema->link,
50                                 $sistema->nombre,
51                                 array(),
52                         array(
53                                     'title'  => $sistema->descripcion,
54                                     'target' => '_blank',
55                                 )
56                     );
57             $html = $img->toHtml() . $link->toHtml() . '<BR>'
58                         . $sistema->descripcion;
59                 if ($sistema->link_ayuda) {
60                         $link = new HTML_Link(
61                                         $sistema->link_ayuda,
62                                         '(?)',
63                                         array(),
64                                         array('target' => '_blank')
65                                 );
66                                 $html .= $link->toHtml();
67                         }
68             $row[] = $html;
69             $sistema = @array_shift($sistemas);
70         } else {
71             $row[] = '&nbsp;';
72         }
73     }
74     $t->addRow($row, array('width' => $pct));
75 }
76
77 $m = new HTML_DietMarco('sistemas');
78 $m->addTitle('Sistemas');
79 $m->addBodyContent($t);
80 $m->display();
81     
82 ?>