You are here

protected function ShareEverywhereConfigForm::getEditableConfigNames in Share Everywhere 8

Same name and namespace in other branches
  1. 2.x src/Form/ShareEverywhereConfigForm.php \Drupal\share_everywhere\Form\ShareEverywhereConfigForm::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

src/Form/ShareEverywhereConfigForm.php, line 116

Class

ShareEverywhereConfigForm
Provides a settings form for Share Everywhere module.

Namespace

Drupal\share_everywhere\Form

Code

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