public function XmlRpcExampleAlterForm::getEditableConfigNames in xmlrpc 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
- xmlrpc_example/
src/ Form/ XmlRpcExampleAlterForm.php, line 22
Class
- XmlRpcExampleAlterForm
- Presents a form to enable/disable the code implemented in hook_xmlrpc_alter.
Namespace
Drupal\xmlrpc_example\FormCode
public function getEditableConfigNames() {
return [
'xmlrpc_example.server',
];
}