You are here

protected function XmlSitemapLinkBundleSettingsForm::getEditableConfigNames in XML sitemap 2.x

Same name and namespace in other branches
  1. 8 src/Form/XmlSitemapLinkBundleSettingsForm.php \Drupal\xmlsitemap\Form\XmlSitemapLinkBundleSettingsForm::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/XmlSitemapLinkBundleSettingsForm.php, line 63

Class

XmlSitemapLinkBundleSettingsForm
Configure what entities will be included in sitemap.

Namespace

Drupal\xmlsitemap\Form

Code

protected function getEditableConfigNames() {
  return [
    'xmlsitemap.settings',
  ];
}