X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/e0e275daf3624e7c6bfce0eb27717d14572273ce..ba466154033d54821e07ab851bccc42e8e344fe9:/sistema/www/servicios/agenda/agenda1.php?ds=inline diff --git a/sistema/www/servicios/agenda/agenda1.php b/sistema/www/servicios/agenda/agenda1.php index 891b98a..807b402 100644 --- a/sistema/www/servicios/agenda/agenda1.php +++ b/sistema/www/servicios/agenda/agenda1.php @@ -32,6 +32,7 @@ require_once 'HTML_DietMarco.php'; require_once 'MECON/HTML/QuickForm.php'; require_once 'MECON/HTML/Image.php'; require_once 'MECON/HTML/Link.php'; +require_once '../../../local_lib/HTML_Institucional.php'; //}}} //CREO LOS OBJETOS NECESARIOS {{{ $TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'claro'); @@ -44,9 +45,16 @@ $IMG2 = new MECON_HTML_Image('../../images/servicios_mail.gif'); $TELECO = new MECON_HTML_Image('../../images/servicios_logo_telecomunicaciones.gif'); $LINK_1 = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', $IMG2); $LINK_2 = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', 'Consultas', array(), array ('class' => 'servicios_agenda_txt2')); +$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 {{{ $EDIFICIOS = Servicios_Agenda::getEdificios($DB); +if (PEAR::isError($EDIFICIOS)) { + trigger_error('Error: ' . $EDIFICIOS->getMessage() . "\n", E_USER_ERROR); +} //}}} //AGREGO LOS ELEMENTOS AL FORM {{{ $header =& $FORM->addElement('header', 'cabecera' , $IMG1->toHtml().'Búsqueda de Internos'); @@ -125,6 +133,9 @@ $MARCO->addScriptDeclaration($JS); //MUESTRO LA INFO {{{ //$MARCO->addTitle('Agenda Telefonica'); $MARCO->addBodyContent($TABLA); +$MARCO->addBodyContent('
'); +$MARCO->addBodyContent($TABLA_INSTITUCIONAL); +$MARCO->addStyleSheet($INST->getCSS()); $MARCO->display(); //}}} ?>