]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios.php
Se agrega mensajito cuando no tiene ningun sistema y se centran los mensajes.
[mecon/intranet.git] / sistema / www / servicios.php
index caf3d85b5f56ff370f1fd9d432ec48ac7b12aef3..0384dcf3dcbd76f360ae1f72a079969f89c3c172 100644 (file)
@@ -1,42 +1,89 @@
 <?
 <?
-  require_once '../local_lib/HTML_DietMarco.php';
-  require_once '../local_lib/HTML_Servicio.php';
-  require_once 'AI/Servicio.php';
-//  require_once 'AI/DB.php';
-  require_once 'DB.php';
-  $m = new HTML_DietMarco('servicios', 'Servicios');
-  $m->addTitle('Servicios');
-  $n_serv = 0;
-  if(isset($_GET['servicios']))
-      $n_serv = $_GET['servicios'];
-  $serv = new AI_Servicio($n_serv);
-  //$bd = AI_DB::Connect();
-  $bd = DB::Connect('mysql://intranet:intranet@bal747f/intranet');
-  $serv->cargar($bd);
-  $serv->cargarHijos($bd);
-  $col_par = '';
-  $col_impar = '';
-  $impar = true;
-  foreach($serv->getHijos() as $s)
-  {
-      $sh =& new HTML_Servicio($s->servicio);
-      if($impar)
-      {
+require_once 'HTML_DietMarco.php';
+require_once 'HTML_Servicio.php';
+require_once 'intranetdb.php';
+require_once 'AI/Servicio.php';
+
+$n_serv = 0;
+if(isset($_GET['servicios']))
+    $n_serv = $_GET['servicios'];
+$serv = new AI_Servicio($n_serv);
+$nombre_corto = 'Servicios';
+if($n_serv != 0)
+{
+    $link = $_SERVER["SCRIPT_NAME"];
+
+    $row = $DB->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 = $DB->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
+$marco = new HTML_DietMarco('servicios', $nombre);
+$serv->cargar($DB);
+$serv->cargarHijos($DB, 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>';
         $col_impar .= $sh->toHTML().'<br>';
-       $impar = false;
-      }
-      else
-      {
+        if ($otro) $otro = false;
+        else
+        {
+            $impar = false;
+            $otro = true;
+        }
+    }
+    else
+    {
         $col_par .= $sh->toHTML().'<br>';
         $col_par .= $sh->toHTML().'<br>';
-       $impar = 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);
+        if ($otro) $otro = false;
+        else
+        {
+            $impar = true;
+            $otro = true;
+        }
+    }
+}
+
+if (is_a(@$sh, 'html_servicio')) {
+    $tabla =& new HTML_Table(array('width' => 760, 'cellspacing' => 10));
+    $tabla->addRow(array($col_impar, $col_par), array('valign'=>'top'));
+    $marco->addStyleSheet($sh->getCSS());
+    $marco->addBodyContent($tabla);
+} else {
+    $marco->addBodyContent('<div class="copete_titulo_vinculos" align="center">No hay servicios cargados en esta sección.</div>');
+}
 
 
-  $m->display();
+$marco->display();
 ?>
 ?>