You are here

public function Language::submitConfigurationForm in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/language/src/Plugin/Condition/Language.php \Drupal\language\Plugin\Condition\Language::submitConfigurationForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the plugin form as built by static::buildConfigurationForm().

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

Overrides ConditionPluginBase::submitConfigurationForm

File

core/modules/language/src/Plugin/Condition/Language.php, line 101
Contains \Drupal\language\Plugin\Condition\Language.

Class

Language
Provides a 'Language' condition.

Namespace

Drupal\language\Plugin\Condition

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $this->configuration['langcodes'] = array_filter($form_state
    ->getValue('langcodes'));
  parent::submitConfigurationForm($form, $form_state);
}