You are here

protected function BlockerSettingsForm::getEditableConfigNames in Cookie Content Blocker 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

src/Form/BlockerSettingsForm.php, line 27

Class

BlockerSettingsForm
Form builder to manage settings related to the Cookie content blocker.

Namespace

Drupal\cookie_content_blocker\Form

Code

protected function getEditableConfigNames() : array {
  return [
    'cookie_content_blocker.settings',
  ];
}