]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/sistemas.php
cambio en el nombre de la primera página del sistema
[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 'MECON/HTML/Link.php';
13 require_once 'MECON/HTML/Image.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'         => '760',
22         'cellspacing'   => '0',
23         'cellpadding'   => '0',
24         'border'        => '0',
25     )
26 );
27
28 // Agrego fila con espaciados.
29 $img = new MECON_HTML_Image('/MECON/images/blanco', '', array('height' => 1));
30 $img->updateAttributes(array('width' => 46));
31 $fila[] = $img;
32 $img->updateAttributes(array('width' => 4));
33 $fila[] = $img;
34 $img->updateAttributes(array('width' => 190));
35 $fila[] = $img;
36 $img->updateAttributes(array('width' => 20));
37 $fila[] = $img;
38 $img->updateAttributes(array('width' => 46));
39 $fila[] = $img;
40 $img->updateAttributes(array('width' => 4));
41 $fila[] = $img;
42 $img->updateAttributes(array('width' => 190));
43 $fila[] = $img;
44 $img->updateAttributes(array('width' => 20));
45 $fila[] = $img;
46 $img->updateAttributes(array('width' => 46));
47 $fila[] = $img;
48 $img->updateAttributes(array('width' => 4));
49 $fila[] = $img;
50 $img->updateAttributes(array('width' => 190));
51 $fila[] = $img;
52 $t->addRow($fila);
53
54 $db = IntranetDB::connect();
55 $sistemas = AI_Sistema::getSistemas($db);
56
57 //$pct = intval(100/COLUMNAS) . '%';
58 $sistema = @array_shift($sistemas);
59 while ($sistema) {
60     $row = array();
61     for ($j = 1; $j <= COLUMNAS; $j++) {
62         if ($sistema) {
63             $row[] = new MECON_HTML_Image(
64                     "/sistemas/intranet/images/$sistema->icono",
65                     $sistema->nombre,
66                     array(
67                         'title'  => $sistema->descripcion,
68                         'border' => 0,
69                         'width'  => '46',
70                         'height' => '46',
71                     )
72             );
73             $row[] = '&nbsp;';
74                         $link = new MECON_HTML_Link(
75                                 $sistema->link,
76                 $sistema->nombre,
77                                 array(),
78                         array(
79                                     'title'  => $sistema->descripcion,
80                                     'target' => '_blank',
81                     'class' => 'intranet_sistemas_txt',
82                                 )
83                     );
84             $html = $link->toHtml();
85                 if ($sistema->link_ayuda) {
86                 $html .= '&nbsp;';
87                 $img = new MECON_HTML_Image(
88                         '/sistemas/intranet/images/sistemas_ayuda',
89                         '(?)'
90                 );
91                         $link = new MECON_HTML_Link(
92                                         $sistema->link_ayuda,
93                                         $img,
94                                         array(),
95                                         array(
96                         'target' => '_blank',
97                         'class' => 'intranet_sistemas_txt',
98                     )
99                                 );
100                 $html .= $link->toHtml();
101                         }
102             $row[] = $html;
103             $sistema = @array_shift($sistemas);
104         } else {
105             $row[] = '&nbsp;';
106             $row[] = '&nbsp;';
107             $row[] = '&nbsp;';
108         }
109         if ($j % (COLUMNAS)) {
110             $row[] = '&nbsp;';
111         }
112     }
113     $t->addRow(array('&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;', '&nbsp;'));
114     $t->addRow($row);
115 }
116
117 $m = new HTML_DietMarco('sistemas', 'Sistemas');
118 $m->addTitle('Sistemas');
119 $m->addStyleDeclaration('
120     .intranet_sistemas_txt {
121         COLOR: #003366;
122         FONT-FAMILY: Arial, Helvetica, sans-serif;
123         FONT-SIZE: 10pt;
124         FONT-WEIGHT: normal;
125         font-style: normal;
126         line-height: normal;
127         background-position: left centre;
128         text-align: left;
129         vertical-align: middle;
130         text-decoration: none;
131     }'
132 );
133 $m->addBodyContent($t);
134 $m->display();
135     
136 ?>