]> git.llucax.com Git - mecon/intranet.git/blob - sistema/www/servicios.php
Bug mental.
[mecon/intranet.git] / sistema / www / servicios.php
1 <?
2 require_once 'HTML_DietMarco.php';
3 require_once 'HTML_Servicio.php';
4 require_once 'intranetdb.php';
5 require_once 'AI/Servicio.php';
6
7 $n_serv = 0;
8 if(isset($_GET['servicios']))
9     $n_serv = $_GET['servicios'];
10 $serv = new AI_Servicio($n_serv);
11 $nombre_corto = 'Servicios';
12 if($n_serv != 0)
13 {
14     $link = $_SERVER["SCRIPT_NAME"];
15
16     $row = $DB->getRow("SELECT nombre, servicio_padre
17             FROM servicio
18             WHERE servicio = $n_serv");
19     $padre = $row[1];
20     $nombre[] = $row[0];
21     $nombre_corto = $row[0];
22     $i = 0;
23     if(is_null($row))
24         $nombre = "Esta pagina no esta cargada en AI!";
25     else
26     {
27         while($padre != 0)
28         {
29             $row = $DB->getRow("SELECT nombre, servicio_padre
30                     FROM servicio
31                     WHERE servicio = $padre");
32             $i++;
33             if(!($i%2))
34             {
35                 $tmp = new MECON_HTML_Link('servicios.php',
36                         $row[0],
37                         array('servicios' => $padre),
38                         array('class' => 'copete_titulo_vinculos'));
39                 $nombre[] = $tmp->toHTML();
40             }
41             $padre = $row[1];
42         }
43         $nombre = implode(' >> ', array_reverse($nombre));
44     }
45 }else
46     $nombre = 'Servicios';//Nombre por default
47 $marco = new HTML_DietMarco('servicios', $nombre);
48 $serv->cargar($DB);
49 $serv->cargarHijos($DB, true, AI_SERVICIO_ORDEN_LONG_HIJOS);
50 $col_par = '';
51 $col_impar = '';
52 $impar = true;
53 $otro = false;
54 foreach($serv->getHijos() as $s)
55 {
56     $sh =& new HTML_Servicio($s->servicio);
57     if($impar)
58     {
59         $col_impar .= $sh->toHTML().'<br>';
60         if ($otro) $otro = false;
61         else
62         {
63             $impar = false;
64             $otro = true;
65         }
66     }
67     else
68     {
69         $col_par .= $sh->toHTML().'<br>';
70         if ($otro) $otro = false;
71         else
72         {
73             $impar = true;
74             $otro = true;
75         }
76     }
77 }
78
79 if (is_a(@$sh, 'html_servicio')) {
80     $tabla =& new HTML_Table(array('width' => 760, 'cellspacing' => 10));
81     $tabla->addRow(array($col_impar, $col_par), array('valign'=>'top'));
82     $marco->addStyleSheet($sh->getCSS());
83     $marco->addBodyContent($tabla);
84 } else {
85     $marco->addBodyContent('<div class="copete_titulo_vinculos" align="center">No hay servicios cargados en esta sección.</div>');
86 }
87
88 $marco->display();
89 ?>