public function EntityLazyLoadContext::hasContextValue in Page Manager 8.4
Same name and namespace in other branches
- 8 src/Context/EntityLazyLoadContext.php \Drupal\page_manager\Context\EntityLazyLoadContext::hasContextValue()
Returns whether the context has a value.
Return value
bool TRUE if the context has a value, FALSE otherwise.
Overrides Context::hasContextValue
File
- src/
Context/ EntityLazyLoadContext.php, line 58
Class
- EntityLazyLoadContext
- @todo.
Namespace
Drupal\page_manager\ContextCode
public function hasContextValue() {
// Ensure that the entity is loaded before checking if it exists.
if (!$this->contextData) {
$this
->getContextValue();
}
return parent::hasContextValue();
}