You are here

public function EntityBundle::removeConstraints in Chaos Tool Suite (ctools) 8.3

Parameters

\Drupal\Core\Plugin\Context\ContextInterface[] $contexts:

Overrides ConstraintConditionInterface::removeConstraints

1 call to EntityBundle::removeConstraints()
EntityBundle::applyConstraints in src/Plugin/Condition/EntityBundle.php

File

src/Plugin/Condition/EntityBundle.php, line 156

Class

EntityBundle
Provides a 'Entity Bundle' condition.

Namespace

Drupal\ctools\Plugin\Condition

Code

public function removeConstraints(array $contexts = []) {

  // Reset the bundle constraint for any context we've mapped.
  foreach ($this
    ->getContextMapping() as $definition_id => $context_id) {
    $constraints = $contexts[$context_id]
      ->getContextDefinition()
      ->getConstraints();
    unset($constraints['Bundle']);
    $contexts[$context_id]
      ->getContextDefinition()
      ->setConstraints($constraints);
  }
}