function ContextAwarePluginBase::validateContexts

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::validateContexts()

Overrides ContextAwarePluginInterface::validateContexts

File

core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php, line 163

Class

ContextAwarePluginBase
Base class for plugins that are context aware.

Namespace

Drupal\Component\Plugin

Code

public function validateContexts() {
    $violations = new ConstraintViolationList();
    // @todo: Implement symfony validator API to let the validator traverse
    // and set property paths accordingly.
    foreach ($this->getContexts() as $context) {
        $violations->addAll($context->validate());
    }
    return $violations;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.