You are here

protected function StatisticsSettingsForm::getEditableConfigNames in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/statistics/src/StatisticsSettingsForm.php \Drupal\statistics\StatisticsSettingsForm::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/statistics/src/StatisticsSettingsForm.php, line 59

Class

StatisticsSettingsForm
Configure statistics settings for this site.

Namespace

Drupal\statistics

Code

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