public function ContentModerationConfigureForm::submitConfigurationForm in Drupal 10
Same name and namespace in other branches
- 8 core/modules/content_moderation/src/Form/ContentModerationConfigureForm.php \Drupal\content_moderation\Form\ContentModerationConfigureForm::submitConfigurationForm()
- 9 core/modules/content_moderation/src/Form/ContentModerationConfigureForm.php \Drupal\content_moderation\Form\ContentModerationConfigureForm::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 PluginFormInterface::submitConfigurationForm
File
- core/
modules/ content_moderation/ src/ Form/ ContentModerationConfigureForm.php, line 153
Class
- ContentModerationConfigureForm
- The content moderation WorkflowType configuration form.
Namespace
Drupal\content_moderation\FormCode
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$configuration = $this->workflowType
->getConfiguration();
$configuration['default_moderation_state'] = $form_state
->getValue([
'workflow_settings',
'default_moderation_state',
]);
$this->workflowType
->setConfiguration($configuration);
}