function Context::getConstraints

Same name in this branch
  1. 9 core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getConstraints()
Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getConstraints()
  2. 8.9.x core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::getConstraints()
  3. 10 core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getConstraints()
  4. 10 core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::getConstraints()
  5. 11.x core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getConstraints()
  6. 11.x core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::getConstraints()

Overrides ContextInterface::getConstraints

1 call to Context::getConstraints()
Context::validate in core/lib/Drupal/Component/Plugin/Context/Context.php
Validates the set context value.
1 method overrides Context::getConstraints()
Context::getConstraints in core/lib/Drupal/Core/Plugin/Context/Context.php
Gets a list of validation constraints.

File

core/lib/Drupal/Component/Plugin/Context/Context.php, line 78

Class

Context
A generic context class for wrapping data a plugin needs to operate.

Namespace

Drupal\Component\Plugin\Context

Code

public function getConstraints() {
    if (empty($this->contextDefinition['class'])) {
        throw new ContextException("An error was encountered while trying to validate the context.");
    }
    return [
        new Type($this->contextDefinition['class']),
    ];
}

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