public function XmlRpcExampleServerForm::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/ XmlRpcExampleServerForm.php, line 24
Class
- XmlRpcExampleServerForm
- Configuration form of the XML-RPC service = UI for the XML-RPC Server part.
Namespace
Drupal\xmlrpc_example\FormCode
public function getEditableConfigNames() {
return [
'xmlrpc_example.server',
];
}