You are here

protected function KeyConfigOverrideAddForm::excludedConfigTypes in Key 8

Define the list of configuration types to exclude.

Return value

array The configuration types to exclude.

1 call to KeyConfigOverrideAddForm::excludedConfigTypes()
KeyConfigOverrideAddForm::getConfigEntityTypeDefinitions in src/Form/KeyConfigOverrideAddForm.php
Get the configuration entity type definitions.

File

src/Form/KeyConfigOverrideAddForm.php, line 373

Class

KeyConfigOverrideAddForm
KeyConfigOverrideAddForm class.

Namespace

Drupal\key\Form

Code

protected function excludedConfigTypes() {
  $exclude = [
    'key',
    'key_config_override',
  ];
  return array_combine($exclude, $exclude);
}