You are here

protected function FooCaptchaSettingsForm::getEditableConfigNames in CAPTCHA Pack 8

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 ConfigFormBaseTrait::getEditableConfigNames

File

foo_captcha/src/Form/FooCaptchaSettingsForm.php, line 23

Class

FooCaptchaSettingsForm
Foo CAPTCHA settings form.

Namespace

Drupal\foo_captcha\Form

Code

protected function getEditableConfigNames() {
  return [
    'foo_captcha.settings',
  ];
}