function Context::getContextValue

Same name in this branch
  1. 11.x core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::getContextValue()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getContextValue()
  2. 9 core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::getContextValue()
  3. 8.9.x core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getContextValue()
  4. 8.9.x core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::getContextValue()
  5. 10 core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getContextValue()
  6. 10 core/lib/Drupal/Component/Plugin/Context/Context.php \Drupal\Component\Plugin\Context\Context::getContextValue()

Overrides Context::getContextValue

File

core/lib/Drupal/Core/Plugin/Context/Context.php, line 61

Class

Context
A Drupal specific context wrapper class.

Namespace

Drupal\Core\Plugin\Context

Code

public function getContextValue() {
    if (!isset($this->contextData)) {
        $definition = $this->getContextDefinition();
        $default_value = $definition->getDefaultValue();
        if (isset($default_value)) {
            // Keep the default value here so that subsequent calls don't have to
            // look it up again.
            $this->setContextValue($default_value);
        }
        elseif ($definition->isRequired()) {
            $type = $definition->getDataType();
            throw new ContextException("The '{$type}' context is required and not present.");
        }
        return $default_value;
    }
    return $this->getTypedDataManager()
        ->getCanonicalRepresentation($this->contextData);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.