// +----------------------------------------------------------------------+ // // $Id$ // $Author$ // $URL$ // $Date$ // $Rev$ // require_once 'HTML/QuickForm.php'; require_once '/home/llucar/public_html/quickform/HTML/QuickForm/Renderer/Tabla.php'; require_once 'Validate.php'; //CREO EL OBJETO FORM $FORM = new HTML_QuickForm ('sistemas_abm','post','sistemas-abm'); // //REGISTRO EL ELEMENTO mdate //Va a ir en el quickform nuestro $FORM->registerElementType ('mdate', 'HTML/QuickForm/mdate.php', 'HTML_QuickForm_mdate'); $FORM->registerRule ('fecha', 'function', 'validate', 'HTML_QuickForm_mdate'); // //AGREGO LOS ELEMENTOS DEL FORM $FORM->addElement('header' , 'cabecera' , 'ABM Sistemas'); $FORM->addElement('hidden' , 'id_sistema'); $FORM->addElement('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30')); $FORM->addElement('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50')); $FORM->addElement('mdate' , 'fecha_inicio' , 'Fecha Inicio' , array('language'=>'es','format'=>'dFY')); $FORM->addElement('mdate' , 'fecha_fin' , 'Fecha Fin' , array('language'=>'es','format'=>'dFY')); $FORM->addElement('mdate' , 'fecha_implementacion', 'Fecha Implementacion', array('language'=>'es','format'=>'dFY')); $FORM->addElement('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50')); $FORM->addElement('static' , 'responsable' , 'Responsable' , $_SESSION['samurai']['login']); $group[] = HTML_QuickForm::createElement('submit', 'aceptar', 'Grabar'); $FORM->addGroup($group,'botones'); // //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS $FORM->addRule('nombre_sistema', 'El campo nombre es obligatorio' , 'required', '', 'client'); $FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required', '', 'client'); $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'numeric' , '', 'client'); $FORM->addRule('contacto' , 'El campo contacto es obligatorio' , 'required', '', 'client'); $FORM->addRule('fecha_inicio' , 'No es una fecha Valida', 'fecha', '', 'client'); $FORM->addRule('fecha_fin' , 'No es una fecha Valida', 'fecha', '', 'client'); // $FORM->addRule('fecha_implementacion', 'No es una fecha Valida', 'fecha', '', 'client'); // //CREO EL OBJETO SISTEMA //Obtengo el id del sistema. $idSistema =& $FORM->getElement('id_sistema'); if (isset($_GET['accion']) && $_GET['accion'] != '') { //Viene en el get es -> modificar o eliminar, me ocupo yo. $id_sistema = $_GET['idSistema']; } else { //Viene en el post, no me ocupo yo. $id_sistema = $idSistema->getValue(); } $idSistema->setValue($id_sistema); $SISTEMA = new Sistema ($DB, $id_sistema); // //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM if (isset($_GET['accion']) && $_GET['accion'] != '') { //MODIFICACION -> agrego la info a los elementos $nombre_sistema =& $FORM->getElement ('nombre_sistema'); $desc_sistema =& $FORM->getElement ('desc_sistema'); $fecha_inicio =& $FORM->getElement ('fecha_inicio'); $fecha_fin =& $FORM->getElement ('fecha_fin'); $fecha_implementacion =& $FORM->getElement ('fecha_implementacion'); $contacto =& $FORM->getElement ('contacto'); $group =& $FORM->getElement ('botones'); $group =& $group->getElements('aceptar'); $aceptar =& $group[0]; $nombre_sistema->setValue($SISTEMA->getNombre()); $desc_sistema->setValue ($SISTEMA->getDescripcion()); $contacto->setValue ($SISTEMA->getContacto()); //Trabajo con las fechas if ($tmp = $SISTEMA->getFechaInicio()) { $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); } if ($tmp = $SISTEMA->getFechaFin()) { $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); } if ($tmp = $SISTEMA->getFechaImplementacion()) { $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); } $aceptar->setValue('Modificar'); //ELIMINACION -> modifico el valor del boton if ($_GET['accion'] == 'e') { $aceptar->setValue('Eliminar'); $FORM->freeze(); } } // //VALIDO EL FORMULARIO if ($FORM->validate()) { $nombre_sistema =& $FORM->getElement ('nombre_sistema' ); $desc_sistema =& $FORM->getElement ('desc_sistema' ); $fecha_inicio =& $FORM->getElement ('fecha_inicio' ); $fecha_fin =& $FORM->getElement ('fecha_fin' ); $fecha_implementacion =& $FORM->getElement ('fecha_implementacion'); $contacto =& $FORM->getElement ('contacto' ); $group =& $FORM->getElement ('botones' ); $group =& $group->getElements('aceptar' ); $aceptar =& $group[0]; $SISTEMA->setNombre ($nombre_sistema->getValue()); $SISTEMA->setDescripcion($desc_sistema->getValue()); $f1 =& $fecha_inicio->getValue(); $f2 =& $fecha_fin->getValue(); $f3 =& $fecha_implementacion->getValue(); //VALIDO LAS FECHAS // $VALIDO = true; if ($f1) { // if (checkdate($f1->format("%m"),$f1->format("%d"),$f1->format("%Y"))) { $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d")); // } // else { // $VALIDO = false; // } } else { $SISTEMA->setFechaInicio(); } if ($f2) { // if (checkdate($f2->format("%m"),$f2->format("%d"),$f2->format("%Y"))) { $SISTEMA->setFechaFin($f2->format("%Y-%m-%d")); // } // else { // $VALIDO = false; // } } else { $SISTEMA->setFechaFin(); } if ($f3) { // if (checkdate($f3->format("%m"),$f3->format("%d"),$f3->format("%Y"))) { $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d")); // } // else { // $VALIDO = false; // } } else { $SISTEMA->setFechaImplementacion(); } // $SISTEMA->setContacto($contacto->getValue()); // if ($VALIDO) { $FORM->freeze(); // $SISTEMA->guardarDatos($aceptar->getValue()); // header('Location: sistemas'); // } } // //DIBUJO LA PAGINA $renderer =& new HTML_QuickForm_Renderer_Tabla('width="100%"'); $FORM->accept($renderer); $MARCO = new Marco ('samurai'); $MARCO->addTitle('Nuevo Sistema'); $MARCO->addBody($renderer->toHtml()); $MARCO->display(); // //FIN ?>