function EntityConstraintViolationList::getEntityViolations
Gets violations flagged on entity level, not associated with any field.
Return value
\Drupal\Core\Entity\EntityConstraintViolationListInterface A list of violations on the entity level.
Overrides EntityConstraintViolationListInterface::getEntityViolations
File
- 
              core/
lib/ Drupal/ Core/ Entity/ EntityConstraintViolationList.php, line 87  
Class
- EntityConstraintViolationList
 - Implements an entity constraint violation list.
 
Namespace
Drupal\Core\EntityCode
public function getEntityViolations() {
  $this->groupViolationOffsets();
  $violations = [];
  foreach ($this->entityViolationOffsets as $offset) {
    $violations[] = $this->get($offset);
  }
  return new static($this->entity, $violations);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.