You are here

protected function EasySocialSettingsForm::getEditableConfigNames in Easy Social 8.4

Same name and namespace in other branches
  1. 8.3 src/Form/EasySocialSettingsForm.php \Drupal\easy_social\Form\EasySocialSettingsForm::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/EasySocialSettingsForm.php, line 65
Contains \Drupal\easy_social\Form\EasySocialSettingsForm.

Class

EasySocialSettingsForm
Configure Easy Social global settings for this site.

Namespace

Drupal\easy_social\Form

Code

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