You are here

protected function ContactStorageSettingsForm::getEditableConfigNames in Contact Storage 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/ContactStorageSettingsForm.php, line 23

Class

ContactStorageSettingsForm
Defines a class for contact_storage's settings form.

Namespace

Drupal\contact_storage\Form

Code

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