X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/4ac9a89dc600fd993d6aeced3b1164ba0396ea8e..20d4a7ba7b9c030db66d4f655caa4cc481a509ae:/sistema/www/servicios/agenda/agenda1.php diff --git a/sistema/www/servicios/agenda/agenda1.php b/sistema/www/servicios/agenda/agenda1.php index cbf9e4d..d4701a5 100644 --- a/sistema/www/servicios/agenda/agenda1.php +++ b/sistema/www/servicios/agenda/agenda1.php @@ -23,14 +23,15 @@ Autor: Martin Marrese ------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ + //REQUIRE ONCE {{{ -require_once '/home/mmarrese/public_html/intranet/sistema/local_lib/Servicios/Agenda.php'; -//require_once '../../../local_lib/Servicios/Agenda.php'; +require_once '../../../local_lib/Servicios/Agenda.php'; require_once 'HTML/Table.php'; +require_once 'MECON/HTML/Tabla.php'; require_once '../../../local_lib/HTML_DietMarco.php'; require_once 'MECON/HTML/QuickForm.php'; -require_once 'HTML/Image.php'; -require_once 'HTML/Link.php'; +require_once 'MECON/HTML/Image.php'; +require_once 'MECON/HTML/Link.php'; require_once 'DB.php'; //}}} //CREO LA CONEXION A LA BASE DE DATOS {{{ @@ -40,14 +41,16 @@ if (DB::isError($DB)) { } //}}} //CREO LOS OBJETOS NECESARIOS {{{ +$TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'servicio'); $MARCO = new HTML_DietMarco('servicios'); $FORM = new MECON_HTML_QuickForm('agenda', 'post', 'agenda2', '', array ('onSubmit' => "return validar(this)", 'action' => '')); +$FORM->renderer->setTable($TABLAFORM); $TABLA = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"'); -$IMG1 = new HTML_Image('../../images/servicios_agenda_lupa.gif'); -$IMG2 = new HTML_Image('../../images/servicios_agenda_mail.gif'); -$TELECO = new HTML_Image('../../images/servicios_agenda_teleco.gif'); -$LINK_1 = new HTML_Link('mailto:teleco@mecon.gov.ar', $IMG2); -$LINK_2 = new HTML_Link('mailto:teleco@mecon.gov.ar', 'Consultas', array(), array ('class' => 'txt2')); +$IMG1 = new MECON_HTML_Image('../../images/servicios_agenda_lupa.gif'); +$IMG2 = new MECON_HTML_Image('../../images/servicios_agenda_mail.gif'); +$TELECO = new MECON_HTML_Image('../../images/servicios_agenda_teleco.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' => 'txt2')); //}}} //OBTENGO LOS DATOS DE LAS BASES {{{ $EDIFICIOS = Servicios_Agenda::getEdificios($DB); @@ -82,8 +85,6 @@ $FORM->addRule('interno','El interno debe ser numerico','numeric'); //}}} //ACOMODO EL FORM {{{ $MARCO->addStyleSheet(PATH_RAIZ.'css/servicios_agenda.css'); //EL PROBLEMA QUE ESTO LO NECESITO PARA QUE FUNCIONE EL RENDERER NUEVO -$FORM->setRenderer('MECON_HTML_QuickForm_Renderer_Tabla_Servicios'); -$FORM->setRendererOpts('width="500"'); //}}} //ARMO LA TABLA {{{ $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml()));