You are here

protected function ForumSettingsForm::getEditableConfigNames in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/forum/src/ForumSettingsForm.php \Drupal\forum\ForumSettingsForm::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

core/modules/forum/src/ForumSettingsForm.php, line 28
Contains \Drupal\forum\ForumSettingsForm.

Class

ForumSettingsForm
Configure forum settings for this site.

Namespace

Drupal\forum

Code

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