GalleryMediaBundleConstraintValidator   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 5
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
B validate() 0 13 5
1
<?php
2
3
namespace Drupal\media\Plugin\Validation\Constraint;
4
5
use Symfony\Component\Validator\Constraint;
6
use Symfony\Component\Validator\ConstraintValidator;
7
8
/**
9
 * Validates the GalleryMediaBundle constraint.
10
 */
11
class GalleryMediaBundleConstraintValidator extends ConstraintValidator {
12
13
  /**
14
   * {@inheritdoc}
15
   */
16
  public function validate($value, Constraint $constraint) {
17
    if (!isset($value)) {
18
      return;
19
    }
20
    if ($value->hasField($constraint->sourceFieldName)) {
21
      $slideshowItems = $value->get($constraint->sourceFieldName);
22
      foreach ($slideshowItems as $item) {
23
        if ($item->entity->getType()->getPluginId() == "slideshow") {
24
          $this->context->addViolation($constraint->message);
25
        }
26
      }
27
    }
28
  }
29
30
}
31