You are here

protected function Settings::getEditableConfigNames in Courier 2.x

Same name in this branch
  1. 2.x src/Form/Settings.php \Drupal\courier\Form\Settings::getEditableConfigNames()
  2. 2.x courier_system/src/Form/Settings.php \Drupal\courier_system\Form\Settings::getEditableConfigNames()
Same name and namespace in other branches
  1. 8 courier_system/src/Form/Settings.php \Drupal\courier_system\Form\Settings::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

courier_system/src/Form/Settings.php, line 60

Class

Settings
Configure Courier System settings.

Namespace

Drupal\courier_system\Form

Code

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