You are here

protected function StatisticsSettingsForm::getEditableConfigNames in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 61
Contains \Drupal\statistics\StatisticsSettingsForm.

Class

StatisticsSettingsForm
Configure statistics settings for this site.

Namespace

Drupal\statistics

Code

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