public function EntityCloneSettingsForm::getEditableConfigNames in Entity Clone 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/ EntityCloneSettingsForm.php, line 47
Class
- EntityCloneSettingsForm
- Provide the settings form for entity clone.
Namespace
Drupal\entity_clone\FormCode
public function getEditableConfigNames() {
return [
'entity_clone.settings',
];
}