You are here

public function SimpleRecaptchaSettingsForm::getEditableConfigNames in Simple Google reCAPTCHA 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

src/Form/SimpleRecaptchaSettingsForm.php, line 25

Class

SimpleRecaptchaSettingsForm
Provides administration form for simple_recaptcha module.

Namespace

Drupal\simple_recaptcha\Form

Code

public function getEditableConfigNames() {
  return [
    static::SETTINGS,
  ];
}