You are here

public function EntityLazyLoadContext::hasContextValue in Chaos Tool Suite (ctools) 8.3

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
Defines context that loads entity on demand.

Namespace

Drupal\ctools\Context

Code

public function hasContextValue() {

  // Ensure that the entity is loaded before checking if it exists.
  if (!$this->contextData) {
    $this
      ->getContextValue();
  }
  return parent::hasContextValue();
}