You are here

protected function YandexMetricsCounterSettingsForm::getEditableConfigNames in Yandex.Metrics 8.3

Same name and namespace in other branches
  1. 8.2 src/Form/YandexMetricsCounterSettingsForm.php \Drupal\yandex_metrics\Form\YandexMetricsCounterSettingsForm::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/YandexMetricsCounterSettingsForm.php, line 27
Contains \Drupal\yandex_metrics\Form\YandexMetricsCounterSettingsForm.

Class

YandexMetricsCounterSettingsForm
Provides a form for configuring Yandex.Metrics counter settings.

Namespace

Drupal\yandex_metrics\Form

Code

protected function getEditableConfigNames() {
  return array(
    'yandex_metrics.settings',
  );
}