You are here

protected function GoogleAuthSettingsForm::getEditableConfigNames in Social Auth Google 3.x

Same name and namespace in other branches
  1. 8.2 src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::getEditableConfigNames()
  2. 8 src/Form/GoogleAuthSettingsForm.php \Drupal\social_auth_google\Form\GoogleAuthSettingsForm::getEditableConfigNames()

Gets the configuration names that will be editable.

Return value

array An array of configuration object names that are editable if called in conjunction with the trait's config() method.

Overrides SocialAuthSettingsForm::getEditableConfigNames

File

src/Form/GoogleAuthSettingsForm.php, line 24

Class

GoogleAuthSettingsForm
Settings form for Social Auth Google.

Namespace

Drupal\social_auth_google\Form

Code

protected function getEditableConfigNames() {
  return array_merge(parent::getEditableConfigNames(), [
    'social_auth_google.settings',
  ]);
}