You are here

protected function Simplelogin::getEditableConfigNames in SimpleLogin 8.6

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/Simplelogin.php, line 60
Contains \Drupal\simplelogin\Form\SettingsForm. Simplelogin settings form.

Class

Simplelogin
Defines a form that configure settings.

Namespace

Drupal\simplelogin\Form

Code

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