------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ //REQUIRE ONCE {{{ require_once 'Servicios/Agenda.php'; require_once 'HTML/Table.php'; require_once 'MECON/HTML/Tabla.php'; require_once 'HTML_DietMarco.php'; require_once 'MECON/HTML/Image.php'; require_once 'MECON/HTML/Link.php'; require_once '../../../local_lib/HTML_Institucional.php'; //}}} //CREO LOS OBJETOS NECESARIOS {{{ $MARCO = new HTML_DietMarco('servicios', 'Servicios'); $AGENDA = new Servicios_Agenda ($DB); $TABLA = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"'); $LUPA = new MECON_HTML_Image('../../images/servicios_lupa.gif'); $MAIL = new MECON_HTML_Image('../../images/servicios_mail.gif'); $TELECO = new MECON_HTML_Image('../../images/servicios_logo_telecomunicaciones.gif'); $INFO = new MECON_HTML_Image('../../images/servicios_info.gif'); $NOTAS = new MECON_HTML_Image('../../images/servicios_nota.gif'); $V5 = new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif'); $LINK_1 = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', $MAIL); $LINK_2 = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', 'Consultas', array(), array ('class' => 'servicios_agenda_txt2')); $LINK_3 = new MECON_HTML_Link('agenda1', 'Nueva búsqueda', array(), array ('class' => 'servicios_agenda_txt2')); $LINK_4 = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', 'envíenos su consulta o reclamo', array(), array('class' => 'servicios_agenda_textoazul'));; $TABLA_INSTITUCIONAL = new HTML_Table('border="0" width="760" align="left"'); $INST = new HTML_Institucional ('/sistemas/intranet/servicios/estatico/institucionales/dto/dto_areas.php', 'Institucional de la D. Técnica Operativa',325,550,500); $TABLA_INSTITUCIONAL->addRow(array($INST), 'align="center"'); //}}} //OBTENGO LOS DATOS DE LAS BASES {{{ if (@$_POST['interno']) { $AGENDA->setInterno($_POST['interno']); } if (@$_POST['nombre']) { $AGENDA->setNombre($_POST['nombre']); } if (@$_POST['codep']) { $AGENDA->setCodep($_POST['codep']); } if (@$_POST['dependencia']) { $AGENDA->setDependencia($_POST['dependencia']); } if (@$_POST['edificio'] && $_POST['edificio'] != '-') { $AGENDA->setEdificio($_POST['edificio']); } if (@$_POST['piso']) { $AGENDA->setPiso($_POST['piso']); } if (@$_POST['oficina']) { $AGENDA->setOficina($_POST['oficina']); } if (@$_POST['Ordenado_por']['op1']) { $AGENDA->setOrdenar($_POST['Ordenado_por']['op1']); } $resultado = $AGENDA->obtenerInfo(); //}}} //ARMO LA TABLA {{{ $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $LUPA->toHtml(), $LINK_3->toHtml(), $TELECO->toHtml())); $TABLA->updateColAttributes(0,'width="24"'); $TABLA->updateColAttributes(1,'width="60"'); $TABLA->updateColAttributes(2,'width="24"'); $TABLA->updateColAttributes(3,'width="100"'); $TABLA->updateColAttributes(4,'width="525" class="servicios_agenda_txt_derecha"'); //AGREGO LA INFORMACION {{{ if (is_null($resultado)) { $TABLA->addRow(array('La búsqueda no produjo aciertos')); $TABLA->setRowAttributes(1,'colspan="5" align="center" class="servicios_agenda_txt_naranja"'); } else { $TABLAN = new MECON_HTML_Tabla ('width="760"', 'claro'); //Agrego el encabezado de la tabla interna $TABLAN->addRow(array($V5->toHtml().'Resultados de la búsqueda de Internos'), 'cabecera'); $TABLAN->addRow(array('Interno','Usuario','Codep','Dependencia','Edificio','Piso','Oficina'), 'titulo'); foreach ($resultado as $res) { $TABLAN->addRow($res); } //ACOMODO LA TABLA {{{ $TABLAN->updateColAttributes(0,'width="47" height="25"'); $TABLAN->updateColAttributes(1,'width="117" height="25"'); $TABLAN->updateColAttributes(2,'width="76" height="25"'); $TABLAN->updateColAttributes(3,'width="263" height="25"'); $TABLAN->updateColAttributes(4,'width="108" height="25"'); $TABLAN->updateColAttributes(5,'width="50" height="25"'); $TABLAN->updateColAttributes(6,'width="83" height="25"'); $TABLAN->updateCellAttributes(0,0,'height="25" colspan="7" bgcolor="#FFFFFF"'); //}}} $MARCO->addStyleSheet($TABLAN->getCss()); //Agrego el estilo de la tabla. $TABLA->addRow(array($TABLAN),'colspan="5"'); } //}}} $TABLA->addRow(array(' '), 'colspan="5" align="center"'); $TABLA->addRow(array($INFO->toHtml() , 'Información suministrada por el Área Telecomunicaciones del Ministerio de Economía')); $TABLA->addRow(array($NOTAS->toHtml(), 'NOTA: Si detecta algún error en los datos, '.$LINK_4->toHtml().'.')); $TABLA->setCellAttributes(3,1,'colspan="4" class="servicios_agenda_textoazul"'); $TABLA->setCellAttributes(4,1,'colspan="4" class="servicios_agenda_textoazul"'); //}}} //MUESTRO LA INFO {{{ $MARCO->addStyleSheet(PATH_RAIZ.'css/servicios_agenda.css'); //$MARCO->addTitle('Agenda Telefonica'); $MARCO->addBodyContent($TABLA); $MARCO->addBodyContent('
'); $MARCO->addBodyContent($TABLA_INSTITUCIONAL); $MARCO->addStyleSheet($INST->getCSS()); $MARCO->display(); //}}} ?>