protected function SettingsForm::getEditableConfigNames in CMS Content Sync 2.1.x
Same name and namespace in other branches
- 8 src/Form/SettingsForm.php \Drupal\cms_content_sync\Form\SettingsForm::getEditableConfigNames()
- 2.0.x src/Form/SettingsForm.php \Drupal\cms_content_sync\Form\SettingsForm::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/ SettingsForm.php, line 238
Class
- SettingsForm
- Content Sync general settings form.
Namespace
Drupal\cms_content_sync\FormCode
protected function getEditableConfigNames() {
return [
'cms_content_sync.settings',
];
}