You are here

public function HasModeratedContentType::submitConfigurationForm in Moderation Dashboard 8

Same name and namespace in other branches
  1. 2.0.x src/Plugin/Condition/HasModeratedContentType.php \Drupal\moderation_dashboard\Plugin\Condition\HasModeratedContentType::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 form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Overrides ConditionPluginBase::submitConfigurationForm

File

src/Plugin/Condition/HasModeratedContentType.php, line 110

Class

HasModeratedContentType
Provides a 'Has Moderated Content Type' condition.

Namespace

Drupal\moderation_dashboard\Plugin\Condition

Code

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