public function CurrentThemeCondition::submitConfigurationForm in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::submitConfigurationForm()
- 9 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::submitConfigurationForm()
File
- core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php, line 94
Class
- CurrentThemeCondition
- Provides a 'Current Theme' condition.
Namespace
Drupal\system\Plugin\ConditionCode
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this->configuration['theme'] = $form_state
->getValue('theme');
parent::submitConfigurationForm($form, $form_state);
}