protected function NegotiationBrowserDeleteForm::getEditableConfigNames in Drupal 8
Same name and namespace in other branches
- 9 core/modules/language/src/Form/NegotiationBrowserDeleteForm.php \Drupal\language\Form\NegotiationBrowserDeleteForm::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
- core/
modules/ language/ src/ Form/ NegotiationBrowserDeleteForm.php, line 28
Class
- NegotiationBrowserDeleteForm
- Defines a confirmation form for deleting a browser language negotiation mapping.
Namespace
Drupal\language\FormCode
protected function getEditableConfigNames() {
return [
'language.mappings',
];
}