function CommentForm::flagViolations
Same name in other branches
- 9 core/modules/comment/src/CommentForm.php \Drupal\comment\CommentForm::flagViolations()
- 10 core/modules/comment/src/CommentForm.php \Drupal\comment\CommentForm::flagViolations()
- 11.x core/modules/comment/src/CommentForm.php \Drupal\comment\CommentForm::flagViolations()
Overrides ContentEntityForm::flagViolations
File
-
core/
modules/ comment/ src/ CommentForm.php, line 341
Class
- CommentForm
- Base handler for comment forms.
Namespace
Drupal\commentCode
protected function flagViolations(EntityConstraintViolationListInterface $violations, array $form, FormStateInterface $form_state) {
// Manually flag violations of fields not handled by the form display.
foreach ($violations->getByField('created') as $violation) {
$form_state->setErrorByName('date', $violation->getMessage());
}
foreach ($violations->getByField('name') as $violation) {
$form_state->setErrorByName('name', $violation->getMessage());
}
parent::flagViolations($violations, $form, $form_state);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.