public function ContextManager::conditionsHasBeenEvaluated in Context 8.4
Same name and namespace in other branches
- 8 src/ContextManager.php \Drupal\context\ContextManager::conditionsHasBeenEvaluated()
- 8.0 src/ContextManager.php \Drupal\context\ContextManager::conditionsHasBeenEvaluated()
Check to see if context conditions has been evaluated.
Return value
bool TRUE if context was already evaluated, FALSE if context was not.
1 call to ContextManager::conditionsHasBeenEvaluated()
- ContextManager::getActiveContexts in src/
ContextManager.php - Get the evaluated and active contexts.
File
- src/
ContextManager.php, line 226
Class
- ContextManager
- This is the manager service for the context module.
Namespace
Drupal\contextCode
public function conditionsHasBeenEvaluated() {
return $this->contextConditionsEvaluated;
}