// +----------------------------------------------------------------------+ // // $Id$ // //REQUIRE ONCE {{{ //MECON {{{ require_once 'MECON/HTML/QuickForm.php'; require_once 'MECON/HTML/Error.php'; require_once 'MECON/HTML/Tabla.php'; // }}} //SAMURAI {{{ require_once 'SAMURAI/Sistema.php'; require_once 'SAMURAI/Permiso.php'; // }}} // }}} //XXX OBTENGO LA ACCION {{{ switch ($_REQUEST['accion']) { case 'm': $b_accion = 'Modificar'; $accion = 'm'; break; case 'e': $b_accion = 'Eliminar'; $accion = 'e'; break; default: $b_accion = 'Grabar'; $accion = ''; break; } //}}} //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ $SAMURAI_PERM->setSistema(SAMURAI_PERM); if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER); } $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); //}}} //CREO LOS OBJETO NECESARIOS {{{ $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm'); // }}} //OBTENGO LA LISTA DE PERMISOS {{{ $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB); // }}} //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' , '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')); $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple')); $FORM->addElement ('hidden' , 'responsable' , $_SESSION['usuario']); $FORM->addElement ('hidden', 'accion', $accion); $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion); $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;')); $FORM->addGroup($group,'botones'); // }}} //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{ $botones = $FORM->getSubmitValue('botones'); if (!@$botones['cancelar']) { $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required'); $FORM->addRule('desc_sistema' , 'El campo descripción es obligatorio' , 'required'); $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required'); // if (isset($_GET['accion']) && $_GET['accion'] != 'e') { $FORM->addRule('fecha_inicio' , 'La fecha no es válida', 'fecha'); $FORM->addRule('fecha_fin' , 'La fecha no es válida', 'fecha'); $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha'); // } $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required'); } // }}} //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']; $idSistema->setValue($id_sistema); } else { //Viene en el post, no me ocupo yo. $id_sistema = $idSistema->getValue(); } $SISTEMA = new SAMURAI_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' ); $permisos =& $FORM->getElement ('permisos' ); $responsable =& $FORM->getElement ('responsable' ); $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()); if ($SISTEMA->getIdPermisos() != '') { $permisos->setSelected($SISTEMA->getIdPermisos()); } if ($SISTEMA->getResponsable() != '') { $responsable->setValue($SISTEMA->getResponsable()); } //Seteo las fechas if ($tmp = $SISTEMA->getFechaInicio()) { $fecha_inicio->setValue(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); } else { $fecha_inicio->setValue(array( 'd' => '', 'F' => '', 'Y' => '', )); } if ($tmp = $SISTEMA->getFechaFin()) { $fecha_fin->setValue(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); } else { $fecha_fin->setValue(array( 'd' => '', 'F' => '', 'Y' => '', )); } if ($tmp = $SISTEMA->getFechaImplementacion()) { $fecha_implementacion->setValue(array( 'd' => $tmp->format("%d"), 'F' => $tmp->format("%m"), 'Y' => $tmp->format("%Y"), )); } else { $fecha_implementacion->setValue(array( 'd' => '', 'F' => '', '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' ); $permisos =& $FORM->getElement ('permisos' ); $responsable =& $FORM->getElement ('responsable' ); $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(); //SETEO LAS FECHAS if ($f1) { $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d")); } else { $SISTEMA->setFechaInicio(); } if ($f2) { $SISTEMA->setFechaFin($f2->format("%Y-%m-%d")); } else { $SISTEMA->setFechaFin(); } if ($f3) { $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d")); } else { $SISTEMA->setFechaImplementacion(); } $SISTEMA->setContacto($contacto->getValue()); $SISTEMA->setPermisos($permisos->getSelected()); $SISTEMA->setResponsable($responsable->getValue()); $botones = $FORM->getSubmitValue('botones'); if (@$botones['cancelar']) { header ('Location: sistemas'); } else { $res = $SISTEMA->guardarDatos($aceptar->getValue()); if ($aceptar->getValue() != 'Eliminar') { $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId(); } if (PEAR::isError($res)) { $ERROR = new MECON_HTML_Error(traducir($res->getMessage())); } else { $FORM->freeze(); header('Location: sistemas'); } } } // }}} //DIBUJO LA PAGINA {{{ $MARCO->addTitle('ABM Sistema'); if (isset($ERROR)) { $MARCO->addBody($ERROR); } $MARCO->addBody($FORM); $MARCO->display(); // }}} //FIN ?>