public function Context::getCondition in Context 8
Same name and namespace in other branches
- 8.4 src/Entity/Context.php \Drupal\context\Entity\Context::getCondition()
- 8.0 src/Entity/Context.php \Drupal\context\Entity\Context::getCondition()
Get a condition with the specified ID.
Parameters
string $condition_id: The condition to get.
Return value
\Drupal\Core\Condition\ConditionInterface
Overrides ContextInterface::getCondition
File
- src/
Entity/ Context.php, line 265
Class
- Context
- Defines the Context entity.
Namespace
Drupal\context\EntityCode
public function getCondition($condition_id) {
return $this
->getConditions()
->get($condition_id);
}