You are here

protected function UserSettings::getEditableConfigNames in Notify 8

Same name and namespace in other branches
  1. 2.0.x src/Form/UserSettings.php \Drupal\notify\Form\UserSettings::getEditableConfigNames()
  2. 1.0.x src/Form/UserSettings.php \Drupal\notify\Form\UserSettings::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/UserSettings.php, line 61

Class

UserSettings
Defines a form that configures forms module settings.

Namespace

Drupal\notify\Form

Code

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