You are here

protected function DomainLangNegotiationUrlForm::getEditableConfigNames in Domain Lang 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 NegotiationUrlForm::getEditableConfigNames

File

src/Form/DomainLangNegotiationUrlForm.php, line 64

Class

DomainLangNegotiationUrlForm
Configure the URL language negotiation method for this site.

Namespace

Drupal\domain_lang\Form

Code

protected function getEditableConfigNames() {
  return [
    'language.negotiation',
    $this->languageNegotiationConfig,
  ];
}