You are here

protected function GlobalredirectSettingsForm::getEditableConfigNames in Global Redirect 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/GlobalredirectSettingsForm.php, line 29
This is the GlobalRedirect admin include which provides an interface to global redirect to change some of the default settings Contains \Drupal\globalredirect\Form\GlobalredirectSettingsForm.

Class

GlobalredirectSettingsForm
Defines a form to configure module settings.

Namespace

Drupal\globalredirect\Form

Code

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