You are here

protected function SettingsForm::getEditableConfigNames in Sparkpost email 8.2

Same name in this branch
  1. 8.2 src/Form/SettingsForm.php \Drupal\sparkpost\Form\SettingsForm::getEditableConfigNames()
  2. 8.2 modules/sparkpost_requeue/src/Form/SettingsForm.php \Drupal\sparkpost_requeue\Form\SettingsForm::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

modules/sparkpost_requeue/src/Form/SettingsForm.php, line 18

Class

SettingsForm
Settings form for sparkpost requeue.

Namespace

Drupal\sparkpost_requeue\Form

Code

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