X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/bad58c7c15130ccbe74c9fd0f0222f9a38d01dcd..d01ffc09f19282e213464e98819057b341e0b484:/sistema/www/servicios/agenda/agenda1.php diff --git a/sistema/www/servicios/agenda/agenda1.php b/sistema/www/servicios/agenda/agenda1.php index f5e30af..7213428 100644 --- a/sistema/www/servicios/agenda/agenda1.php +++ b/sistema/www/servicios/agenda/agenda1.php @@ -24,17 +24,14 @@ Autor: Martin Marrese $Id$ -----------------------------------------------------------------------------*/ -require_once 'MECON/general.php'; -prepend_include_path('/home/mmarrese/public_html/meconlib/lib/'); - //REQUIRE ONCE {{{ 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 {{{ @@ -44,22 +41,22 @@ if (DB::isError($DB)) { } //}}} //CREO LOS OBJETOS NECESARIOS {{{ -$TABLAFORM = new Tabla ('width="500"', 'servicio'); -$MARCO = new HTML_DietMarco('servicios'); +$TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'claro'); +$MARCO = new HTML_DietMarco('servicios', '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_lupa.gif'); +$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')); //}}} //OBTENGO LOS DATOS DE LAS BASES {{{ $EDIFICIOS = Servicios_Agenda::getEdificios($DB); //}}} //AGREGO LOS ELEMENTOS AL FORM {{{ -$header =& $FORM->addElement('header', 'comun' , $IMG1->toHtml().'Búsqueda de Internos'); +$header =& $FORM->addElement('header', 'cabecera' , $IMG1->toHtml().'Búsqueda de Internos'); $interno =& $FORM->addElement('text' , 'interno' , 'Interno' , array ("size" => '10 , "maxlength" => "4"')); $usuario =& $FORM->addElement('text' , 'nombre' , 'Usuario' , array ("size" => '40')); $codep =& $FORM->addElement('text' , 'codep' , 'Codep' , array ("size" => '40', "maxlength" => "10")); @@ -87,13 +84,14 @@ $botones =& $FORM->addGroup($grupo2, 'botones'); $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 +$MARCO->addStyleSheet($TABLAFORM->getCss()); //Agrego el estilo de la tabla. +$MARCO->addStyleSheet(PATH_RAIZ.'css/servicios_agenda.css'); //Agrego los estilos particulares de este servicio. //}}} //ARMO LA TABLA {{{ $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml())); $TABLA->updateColAttributes(0,'width="24" height="25"'); $TABLA->updateColAttributes(1,'width="60" height="25"'); -$TABLA->updateColAttributes(2,'width="676" class="txt_derecha" height="25"'); +$TABLA->updateColAttributes(2,'width="676" align="right" height="25"'); $TABLA->addRow(array($FORM), 'colspan="3"'); //}}} //AGREGO EL JAVASCRIPT DE VALIDACION {{{