You are here

public function OpenIDConnectClientBase::settingsFormSubmit in OpenID Connect / OAuth client 7

Handles the submitted settings form.

Note that there is no need to handle saving the options, that is done by the parent form.

Parameters

array $form: The settings form.

array $form_state: An array containing the current state of the form. Contains only the 'values' key, since it is actually constructed on the fly by the parent form.

Overrides OpenIDConnectClientInterface::settingsFormSubmit

File

includes/OpenIDConnectClientBase.class.php, line 100
Base class for OpenID Connect clients.

Class

OpenIDConnectClientBase
Base class for OpenID Connect clients.

Code

public function settingsFormSubmit($form, &$form_state) {

  // No need to do anything, but make the function have a body anyway
  // so that it's callable by overriding methods.
}