You are here

protected function RegionalForm::getEditableConfigNames in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Form/RegionalForm.php \Drupal\system\Form\RegionalForm::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/RegionalForm.php, line 61
Contains \Drupal\system\Form\RegionalForm.

Class

RegionalForm
Configure regional settings for this site.

Namespace

Drupal\system\Form

Code

protected function getEditableConfigNames() {
  return [
    'system.date',
  ];
}