X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/0030a5e4c8ffc960a1ab7413eb1cc1ef111bf366..1eece5e381b91b081446023edf4120c9f4e3dd33:/sistema/www/servicios.php diff --git a/sistema/www/servicios.php b/sistema/www/servicios.php index e1ba91d..0384dcf 100644 --- a/sistema/www/servicios.php +++ b/sistema/www/servicios.php @@ -1,20 +1,89 @@ -
- require_once '../local_lib/copete.php'; - $c = new Copete('servicios'); - echo $c->toHTML(); +require_once 'HTML_DietMarco.php'; +require_once 'HTML_Servicio.php'; +require_once 'intranetdb.php'; +require_once 'AI/Servicio.php'; - require_once '../local_lib/intranetdb.php'; - require_once 'MECON/HTML/Arbol/ArbolDB.php'; - $db = IntranetDB::connect(); - $dbdata = array( - 'db' => $db, - 'tabla' => 'servicio', - 'id' => 'servicio', - 'nombre' => 'nombre', - 'id_padre' => 'servicio_padre', - 'link' => 'link'); - $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif'); - echo $arbol->toHTML(); +$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().'