protected function SimplesitemapFormBase::getEditableConfigNames in Simple XML sitemap 8.2
Same name and namespace in other branches
- 8.3 src/Form/SimplesitemapFormBase.php \Drupal\simple_sitemap\Form\SimplesitemapFormBase::getEditableConfigNames()
- 4.x src/Form/SimpleSitemapFormBase.php \Drupal\simple_sitemap\Form\SimpleSitemapFormBase::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
- src/
Form/ SimplesitemapFormBase.php, line 81
Class
- SimplesitemapFormBase
- Class SimplesitemapFormBase @package Drupal\simple_sitemap\Form
Namespace
Drupal\simple_sitemap\FormCode
protected function getEditableConfigNames() {
return [
'simple_sitemap.settings',
];
}