function ConditionPluginCollection::addContext
Sets the condition context for a given name.
Parameters
string $name: The name of the context.
\Drupal\Component\Plugin\Context\ContextInterface $context: The context to add.
Return value
$this
File
- 
              core/
lib/ Drupal/ Core/ Condition/ ConditionPluginCollection.php, line 69  
Class
- ConditionPluginCollection
 - Provides a collection of condition plugins.
 
Namespace
Drupal\Core\ConditionCode
public function addContext($name, ContextInterface $context) {
  $this->conditionContexts[$name] = $context;
  return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.