public function OpenIDConnectClientBase::settingsFormValidate in OpenID Connect / OAuth client 7
Validates the settings 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.
string $error_element_base: The base to prepend to field names when using form_set_error().
Overrides OpenIDConnectClientInterface::settingsFormValidate
File
- includes/
OpenIDConnectClientBase.class.php, line 92 - Base class for OpenID Connect clients.
Class
- OpenIDConnectClientBase
- Base class for OpenID Connect clients.
Code
public function settingsFormValidate($form, &$form_state, $error_element_base) {
// No need to do anything, but make the function have a body anyway
// so that it's callable by overriding methods.
}