]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios.php
- Le saque el XP al titulo
[mecon/intranet.git] / sistema / www / servicios.php
index 85a296b10e20379ce372873c3f9cd9a92f92e6e5..8285219711ea5ff32b771aefa655cbb6c13f9f54 100644 (file)
@@ -1,37 +1,89 @@
 <?
   require_once '../local_lib/HTML_DietMarco.php';
-  require_once '../local_lib/intranetdb.php';
-  require_once 'MECON/HTML/Arbol/ArbolDB.php';
-  $m = new HTML_DietMarco('servicios');
-  $m->addTitle('Servicios');
+  require_once '../local_lib/HTML_Servicio.php';
+  require_once 'AI/Servicio.php';
+//  require_once 'AI/DB.php';
+  require_once 'DB.php';
+  $n_serv = 0;
+  if(isset($_GET['servicios']))
+      $n_serv = $_GET['servicios'];
+  $serv = new AI_Servicio($n_serv);
+  $nombre_corto = 'Servicios';
+  //$bd = AI_DB::Connect();
+  $bd = DB::Connect('mysql://intranet:intranet@bal747f/intranet');
+  if($n_serv != 0)
+  {
+    $link = $_SERVER["SCRIPT_NAME"];
 
-  $seccion =& new HTML_Table(array('width'       =>'360',
-                                  'border'      => '0',
-                                  'cellspacing' => '0',
-                                  'cellpadding' => '0',
-                                  'bgcolor'     => '#FFFFFF'));
-  $seccion->addRow(array("Nombre(sin estilo)"), array('align' => 'center',
-                                       'class' => 'arboltitulo',
-                                       'background'=>'images/servicio_cabecera.gif',
-                                       'height'=>32));
-  $img = new HTML_Image('images/servicio_bullet.gif');
-  $int =& new HTML_Table(array('width'       =>'360',
-                                  'border'      => '0',
-                                  'cellspacing' => '0',
-                                  'cellpadding' => '0',
-                                  'bgcolor'     => '#FFFFFF',
-                                 'background' => 'images/servicio_borde_sup.gif'));
-  $int->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'),
-                          array('valign' => 'top'));
-  $int->updateColAttributes(0, array('width' => '10%'));
-  $int->updateColAttributes(1, array('width' => '40%'));
-  $int->updateColAttributes(2, array('width' => '10%'));
-  $int->updateColAttributes(3, array('width' => '40%'));
-  $seccion->addRow(array($int));
-  $seccion->addRow(array($int));
-  $seccion->addRow(array($int));
-  $seccion->addRow(array(new HTML_Image('images/servicio_borde_inf.gif')));
+    $row = $bd->getRow("SELECT nombre, servicio_padre
+                        FROM servicio
+                        WHERE servicio = $n_serv");
+    $padre = $row[1];
+    $nombre[] = $row[0];
+    $nombre_corto = $row[0];
+    $i = 0;
+    if(is_null($row))
+      $nombre = "Esta pagina no esta cargada en AI!";
+    else
+    {
+      while($padre != 0)
+      {
+        $row = $bd->getRow("SELECT nombre, servicio_padre
+                            FROM servicio
+                            WHERE servicio = $padre");
+       $i++;
+       if(!($i%2))
+       {
+          $tmp = new MECON_HTML_Link("servicios.php",
+                                    $row[0],
+                                    array('servicios' => $padre),
+                                    array('class' => 'copete_titulo_vinculos'));
+          $nombre[] = $tmp->toHTML();
+       }
+        $padre = $row[1];
+      }
+      $nombre = implode(' >> ', array_reverse($nombre));
+    }
+  }else
+    $nombre = 'Servicios';//Nombre por default
+  $m = new HTML_DietMarco('servicios', $nombre);
+//  $m->addTitle('Servicios');
+  $serv->cargar($bd);
+  $serv->cargarHijos($bd, true, AI_SERVICIO_ORDEN_LONG_HIJOS);
+  $col_par = '';
+  $col_impar = '';
+  $impar = true;
+  $otro = false;
+  foreach($serv->getHijos() as $s)
+  {
+      $sh =& new HTML_Servicio($s->servicio);
+      if($impar)
+      {
+        $col_impar .= $sh->toHTML().'<br>';
+        if ($otro) $otro = false;
+        else
+        {
+          $impar = false;
+          $otro = true;
+        }
+      }
+      else
+      {
+        $col_par .= $sh->toHTML().'<br>';
+        if ($otro) $otro = false;
+        else
+        {
+          $impar = true;
+          $otro = true;
+        }
+      }
+  }
+  $m->addStyleSheet($sh->getCSS());
+  $tabla =& new HTML_Table(array('width' => 760,
+                                 'cellspacing' => 10));
+  $tabla->addRow(array($col_impar, $col_par), array('valign'=>'top'));
+  $m->addBodyContent($tabla);
 
-  $m->addBodyContent($seccion);
   $m->display();
 ?>