public function Context::hasContextValue in Plug 7
Returns whether the context has a value.
Return value
bool TRUE if the context has a value, FALSE otherwise.
Overrides ContextInterface::hasContextValue
File
- lib/
Drupal/ Component/ Plugin/ Context/ Context.php, line 69 - Contains \Drupal\Component\Plugin\Context\Context.
Class
- Context
- A generic context class for wrapping data a plugin needs to operate.
Namespace
Drupal\Component\Plugin\ContextCode
public function hasContextValue() {
return (bool) $this->contextValue || (bool) $this
->getContextDefinition()
->getDefaultValue();
}