function Context::getContextData
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getContextData()
- 10 core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getContextData()
- 11.x core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getContextData()
Overrides ContextInterface::getContextData
1 call to Context::getContextData()
- Context::hasContextValue in core/
lib/ Drupal/ Core/ Plugin/ Context/ Context.php - Returns whether the context has a value.
File
-
core/
lib/ Drupal/ Core/ Plugin/ Context/ Context.php, line 117
Class
- Context
- A Drupal specific context wrapper class.
Namespace
Drupal\Core\Plugin\ContextCode
public function getContextData() {
if (!isset($this->contextData)) {
$definition = $this->getContextDefinition();
$default_value = $definition->getDefaultValue();
// Store the default value so that subsequent calls don't have to look
// it up again.
$this->contextData = $this->getTypedDataManager()
->create($definition->getDataDefinition(), $default_value);
}
return $this->contextData;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.