You are here

protected function FancyLoginSettingsForm::getEditableConfigNames in Fancy Login 8.2

Same name and namespace in other branches
  1. 3.0.x src/Form/FancyLoginSettingsForm.php \Drupal\fancy_login\Form\FancyLoginSettingsForm::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 ConfigFormBaseTrait::getEditableConfigNames

File

src/Form/FancyLoginSettingsForm.php, line 23

Class

FancyLoginSettingsForm
Creates the settings form for the fancy login module.

Namespace

Drupal\fancy_login\Form

Code

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