You are here

public function ContextManager::conditionsHasBeenEvaluated in Context 8.0

Same name and namespace in other branches
  1. 8.4 src/ContextManager.php \Drupal\context\ContextManager::conditionsHasBeenEvaluated()
  2. 8 src/ContextManager.php \Drupal\context\ContextManager::conditionsHasBeenEvaluated()

Check to see if context conditions has been evaluated.

Return value

bool

1 call to ContextManager::conditionsHasBeenEvaluated()
ContextManager::getActiveContexts in src/ContextManager.php
Get the evaluated and active contexts.

File

src/ContextManager.php, line 161

Class

ContextManager
This is the manager service for the context module and should not be confused with the built in contexts in Drupal.

Namespace

Drupal\context

Code

public function conditionsHasBeenEvaluated() {
  return $this->contextConditionsEvaluated;
}