- $SAMURAI = new Samurai($DB);
- $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
+ $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
// }}}
//AGREGO LOS ELEMENTOS DEL FORM {{{
$FORM->addElement ('header', 'cabecera', 'ABM Permisos');
$FORM->addElement ('hidden', 'id_permiso');
$FORM->addElement ('text' , 'desc_permiso', 'Descripcion', array('size'=>'50'));
// }}}
//AGREGO LOS ELEMENTOS DEL FORM {{{
$FORM->addElement ('header', 'cabecera', 'ABM Permisos');
$FORM->addElement ('hidden', 'id_permiso');
$FORM->addElement ('text' , 'desc_permiso', 'Descripcion', array('size'=>'50'));
- $FORM->addElement ('static', 'responsable' , 'Responsable', $_SESSION['samurai']['login']);
+ $FORM->addElement ('hidden', 'responsable' , $_SESSION['usuario']);
$FORM->addGroup($group,'botones');
// }}}
//AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
$FORM->addGroup($group,'botones');
// }}}
//AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
//Viene en el post, no me ocupo yo.
$id_permiso = $idPermiso->getValue();
}
//Viene en el post, no me ocupo yo.
$id_permiso = $idPermiso->getValue();
}
// }}}
//SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
if (isset($_GET['accion']) && $_GET['accion'] != '') {
// }}}
//SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
if (isset($_GET['accion']) && $_GET['accion'] != '') {
//ELIMINACION -> modifico el valor del boton
if ($_GET['accion'] == 'e') {
$aceptar->setValue('Eliminar');
//ELIMINACION -> modifico el valor del boton
if ($_GET['accion'] == 'e') {
$aceptar->setValue('Eliminar');
$desc_permiso =& $FORM->getElement ('desc_permiso');
$responsable =& $FORM->getElement ('responsable' );
$group =& $FORM->getElement ('botones' );
$desc_permiso =& $FORM->getElement ('desc_permiso');
$responsable =& $FORM->getElement ('responsable' );
$group =& $FORM->getElement ('botones' );
//Verifico si se produjo algun error
$res = $PERMISO->guardarDatos($aceptar->getValue());
if (PEAR::isError($res)) {
//Verifico si se produjo algun error
$res = $PERMISO->guardarDatos($aceptar->getValue());
if (PEAR::isError($res)) {
- $TABLA = new Tabla ('cellspacing=0');
- $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
- $TABLA->addRow($row,'align=left');
+ $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
+ if ($aceptar->getValue() == 'Eliminar') {
+ $FORM->freeze();
+ }