From 6f39b8afae2fef6d4da703c44495a9d72b7b0f1b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Thu, 15 Jan 2004 20:56:43 +0000 Subject: [PATCH] Acomodo para que funcione con los nuevos cambios en QuickForm --- sistema/www/sistemas/sistemas-abm.php | 55 +++++++++++++++------------ 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/sistema/www/sistemas/sistemas-abm.php b/sistema/www/sistemas/sistemas-abm.php index 7432b90..7311db3 100644 --- a/sistema/www/sistemas/sistemas-abm.php +++ b/sistema/www/sistemas/sistemas-abm.php @@ -50,7 +50,14 @@ $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones $FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30')); $FORM->addElement ('textarea', 'desc_sistema' , 'DescripciĆ³n' , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual')); + +//xdebug_start_trace(); + $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' ); + +//xdebug_dump_function_trace(); + + $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' ); $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha ImplementaciĆ³n'); $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50')); @@ -117,43 +124,43 @@ $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones } //Seteo las fechas if ($tmp = $SISTEMA->getFechaInicio()) { - $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"), - 'F' => $tmp->format("%m"), - 'Y' => $tmp->format("%Y"), - )); + $fecha_inicio->setValue(array( 'd' => $tmp->format("%d"), + 'F' => $tmp->format("%m"), + 'Y' => $tmp->format("%Y"), + )); } else { - $fecha_inicio->setSelectedDate(array( 'd' => '', - 'F' => '', - 'Y' => '', - )); + $fecha_inicio->setValue(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); } if ($tmp = $SISTEMA->getFechaFin()) { - $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"), - 'F' => $tmp->format("%m"), - 'Y' => $tmp->format("%Y"), - )); + $fecha_fin->setValue(array( 'd' => $tmp->format("%d"), + 'F' => $tmp->format("%m"), + 'Y' => $tmp->format("%Y"), + )); } else { - $fecha_fin->setSelectedDate(array( 'd' => '', - 'F' => '', - 'Y' => '', - )); + $fecha_fin->setValue(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); } if ($tmp = $SISTEMA->getFechaImplementacion()) { - $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"), - 'F' => $tmp->format("%m"), - 'Y' => $tmp->format("%Y"), - )); + $fecha_implementacion->setValue(array( 'd' => $tmp->format("%d"), + 'F' => $tmp->format("%m"), + 'Y' => $tmp->format("%Y"), + )); } else { - $fecha_implementacion->setSelectedDate(array( 'd' => '', - 'F' => '', - 'Y' => '', - )); + $fecha_implementacion->setValue(array( 'd' => '', + 'F' => '', + 'Y' => '', + )); } $aceptar->setValue('Modificar'); -- 2.43.0