+if (isset($_GET['accion']) && $accion != '') {
+ $perfiles =& $FORM->getElement ('perfiles');
+ $group =& $FORM->getElement ('botones' );
+ $group =& $group->getElements('aceptar' );
+ $aceptar =& $group[0];
+
+ $perfiles->setSelected($USUARIO->getPerfiles());
+
+ //Modifico el valor del boton
+ $aceptar->setValue('Modificar');
+
+ //ELIMINACION -> modifico el valor del boton
+ if ($_GET['accion'] == 'e') {
+ $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
+ $aceptar->setValue('Eliminar');
+ $FORM->freeze();
+ }
+}
+//}}}
+
+//VALIDO EL FORMULARIO {{{
+if ($FORM->validate()) {
+ // VEO SI SE CANCELO {{{
+ $botones = $FORM->getSubmitValue('botones');
+ if (@$botones['cancelar']) {
+ header('Location: usuarios');
+ }
+ // }}}
+ else {
+ $login2 =& $FORM->getElement ('login' );
+ $nombre =& $FORM->getElement ('nombre' );