You are here

protected function IntervalsForm::getEditableConfigNames in Subscriptions 2.0.x

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/IntervalsForm.php, line 105

Class

IntervalsForm
Defines the intervals settings form.

Namespace

Drupal\subscriptions\Form

Code

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