protected function SiteInformationForm::getEditableConfigNames in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/src/Form/SiteInformationForm.php \Drupal\system\Form\SiteInformationForm::getEditableConfigNames()
- 9 core/modules/system/src/Form/SiteInformationForm.php \Drupal\system\Form\SiteInformationForm::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/ system/ src/ Form/ SiteInformationForm.php, line 82
Class
- SiteInformationForm
- Configure site information settings for this site.
Namespace
Drupal\system\FormCode
protected function getEditableConfigNames() {
return [
'system.site',
];
}