You are here

protected function GlobalForm::getEditableConfigNames in Googalytics - Google Analytics 8

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

modules/ga_tokens/src/Form/GlobalForm.php, line 56

Class

GlobalForm
Form for editing Google Analytics Global Dimensions settings.

Namespace

Drupal\ga_tokens\Form

Code

protected function getEditableConfigNames() {
  return [
    'ga_tokens.global',
  ];
}