public function EntityConstraintViolationList::getByFields

public EntityConstraintViolationList::getByFields(array $field_names)

Gets the violations of the given fields.

When violations should be displayed for a sub-set of visible fields only, this method may be used to filter the set of visible violations first.

Parameters

string[] $field_names: The names of the fields to get violations for.

Return value

\Drupal\Core\Entity\EntityConstraintViolationListInterface A list of violations of the given fields.

Overrides EntityConstraintViolationListInterface::getByFields

File

core/lib/Drupal/Core/Entity/EntityConstraintViolationList.php, line 101

Class

EntityConstraintViolationList
Implements an entity constraint violation list.

Namespace

Drupal\Core\Entity

Code

public function getByFields(array $field_names) {
  $this->groupViolationOffsets();
  $violations = [];
  foreach (array_intersect_key($this->violationOffsetsByField, array_flip($field_names)) as $field_name => $offsets) {
    foreach ($offsets as $offset) {
      $violations[] = $this->get($offset);
    }
  }
  return new static($this->entity, $violations);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!EntityConstraintViolationList.php/function/EntityConstraintViolationList::getByFields/8.1.x