X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/8a77d0b3c6347150fe4ac26aeb17b738e91351dc..d1b87d273a1fb8cbb226afeff7cd67669c779d7e:/sistema/www/servicios.php diff --git a/sistema/www/servicios.php b/sistema/www/servicios.php index 8253b1a..6ae724b 100644 --- a/sistema/www/servicios.php +++ b/sistema/www/servicios.php @@ -4,15 +4,47 @@ 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); + $nombre_corto = 'Servicios'; //$bd = AI_DB::Connect(); $bd = DB::Connect('mysql://intranet:intranet@bal747f/intranet'); + if($n_serv != 0) + { + $link = $_SERVER["SCRIPT_NAME"]; + + $row = $bd->getRow("SELECT nombre, servicio_padre + FROM servicio + WHERE servicio = $n_serv"); + $padre = $row[1]; + $nombre[] = $row[0]; + $nombre_corto = $row[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"); + $padre = $row[1]; + $nombre[] = $row[0]; + } + } + $image = new MECON_HTML_Image(PATH_RAIZ.'images/copete_flecha_azul.gif', + null, + array('height' => '15', + 'border' => '0')); + $nombre = implode(' '.$image->toHTML().' ', array_reverse($nombre)); + }else + $nombre = 'Servicios << Esto Va?'; + $m = new HTML_DietMarco('servicios', $nombre); + $m->addTitle('TODO poner ultimo aqui'); $serv->cargar($bd); $serv->cargarHijos($bd, true, AI_SERVICIO_ORDEN_LONG_HIJOS); $col_par = '';