]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/agenda/agenda1.php
Estandarizacion de nombres de clases. Adaptacion de Tabla a MECON_HTML_Tabla.
[mecon/intranet.git] / sistema / www / servicios / agenda / agenda1.php
index cbf9e4dac60f0401ee47eb8d9ec11265c7742cbc..4fc70035a3a8c493de18102e91b7d0d78dd73a98 100644 (file)
@@ -23,10 +23,14 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 -------------------------------------------------------------------------------
 $Id$
 -----------------------------------------------------------------------------*/
 -------------------------------------------------------------------------------
 $Id$
 -----------------------------------------------------------------------------*/
+
+require_once 'MECON/general.php';
+prepend_include_path('/home/mmarrese/public_html/meconlib/lib/');
+
 //REQUIRE ONCE {{{
 //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 '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 '../../../local_lib/HTML_DietMarco.php';
 require_once 'MECON/HTML/QuickForm.php';
 require_once 'HTML/Image.php';
@@ -40,8 +44,10 @@ if (DB::isError($DB)) {
 }
 //}}}
 //CREO LOS OBJETOS NECESARIOS {{{
 }
 //}}}
 //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' => ''));
 $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');
 $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');
@@ -82,8 +88,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
 //}}}
 //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()));
 //}}}
 //ARMO LA TABLA {{{
 $TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml()));