You are here

public function NegotiationUrlForm::submitForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/language/src/Form/NegotiationUrlForm.php \Drupal\language\Form\NegotiationUrlForm::submitForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides ConfigFormBase::submitForm

File

core/modules/language/src/Form/NegotiationUrlForm.php, line 208

Class

NegotiationUrlForm
Configure the URL language negotiation method for this site.

Namespace

Drupal\language\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {

  // Save selected format (prefix or domain).
  $this
    ->config('language.negotiation')
    ->set('url.source', $form_state
    ->getValue('language_negotiation_url_part'))
    ->set('url.prefixes', $form_state
    ->getValue('prefix'))
    ->set('url.domains', $form_state
    ->getValue('domain'))
    ->save();
  parent::submitForm($form, $form_state);
}