function EntityLazyLoadContext::hasContextValue
Overrides Context::hasContextValue
File
- 
              src/
Context/ EntityLazyLoadContext.php, line 58  
Class
- EntityLazyLoadContext
 - Defines context that loads entity on demand.
 
Namespace
Drupal\ctools\ContextCode
public function hasContextValue() {
  // Ensure that the entity is loaded before checking if it exists.
  if (!$this->contextData) {
    $this->getContextValue();
  }
  return parent::hasContextValue();
}