public function ContextAwarePluginBase::getContextValues in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::getContextValues()
Gets the values for all defined contexts.
Return value
array An array of set context values, keyed by context name. If a context is unset its value is returned as NULL.
Overrides ContextAwarePluginInterface::getContextValues
File
- core/
lib/ Drupal/ Component/ Plugin/ ContextAwarePluginBase.php, line 153
Class
- ContextAwarePluginBase
- Base class for plugins that are context aware.
Namespace
Drupal\Component\PluginCode
public function getContextValues() {
$values = [];
foreach ($this
->getContextDefinitions() as $name => $definition) {
$values[$name] = isset($this->context[$name]) ? $this->context[$name]
->getContextValue() : NULL;
}
return $values;
}