You are here

public function GoogleAuthSettingsForm::submitForm in Open Social 8.9

Same name and namespace in other branches
  1. 8 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()
  2. 8.2 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()
  3. 8.3 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()
  4. 8.4 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()
  5. 8.5 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()
  6. 8.6 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()
  7. 8.7 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()
  8. 8.8 modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::submitForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides ConfigFormBase::submitForm

File

modules/custom/social_auth_google/src/Form/GoogleAuthSettingsForm.php, line 75

Class

GoogleAuthSettingsForm
Class GoogleAuthSettingsForm.

Namespace

Drupal\social_auth_google\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $values = $form_state
    ->getValues();
  $this
    ->config('social_auth_google.settings')
    ->set('client_id', $values['client_id'])
    ->set('client_secret', $values['client_secret'])
    ->set('status', $values['status'])
    ->save();
  parent::submitForm($form, $form_state);
}