You are here

function _services_keyauth_security_settings_submit in Services 6.2

Same name and namespace in other branches
  1. 7 auth/services_keyauth/services_keyauth.inc \_services_keyauth_security_settings_submit()

Submit callback for keyauth security settings form.

1 string reference to '_services_keyauth_security_settings_submit'
services_keyauth_authentication_info in auth/services_keyauth/services_keyauth.module
Implementation of hook_authentication_info().

File

auth/services_keyauth/services_keyauth.inc, line 47
The implementation of the key authentication scheme

Code

function _services_keyauth_security_settings_submit($form_state) {

  // Store all values from "our" form as variables.
  foreach (_services_keyauth_security_settings() as $key => $field) {
    variable_set($key, $form_state['values'][$key]);
  }
}