public function Context::hasContextValue in Drupal 9
Same name in this branch
- 9 core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::hasContextValue()
- 9 core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::hasContextValue()
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::hasContextValue()
Returns whether the context has a value.
Return value
bool TRUE if the context has a value, FALSE otherwise.
Overrides Context::hasContextValue
File
- core/
lib/ Drupal/ Core/ Plugin/ Context/ Context.php, line 83
Class
- Context
- A Drupal specific context wrapper class.
Namespace
Drupal\Core\Plugin\ContextCode
public function hasContextValue() {
return (bool) $this->contextData || parent::hasContextValue();
}