Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Context.php

function Context::getContextValue

Same name in this branch
  1. 11.1.x core/lib/Drupal/Core/Plugin/Context/Context.php \Drupal\Core\Plugin\Context\Context::getContextValue()

Overrides ContextInterface::getContextValue

1 call to Context::getContextValue()
Context::validate in core/lib/Drupal/Component/Plugin/Context/Context.php
Validates the set context value.
1 method overrides Context::getContextValue()
Context::getContextValue in core/lib/Drupal/Core/Plugin/Context/Context.php
Gets the context value.

File

core/lib/Drupal/Component/Plugin/Context/Context.php, line 44

Class

Context
A generic context class for wrapping data a plugin needs to operate.

Namespace

Drupal\Component\Plugin\Context

Code

public function getContextValue() {
    // Support optional contexts.
    if (!isset($this->contextValue)) {
        $definition = $this->getContextDefinition();
        $default_value = $definition->getDefaultValue();
        if (!isset($default_value) && $definition->isRequired()) {
            $type = $definition->getDataType();
            throw new ContextException(sprintf("The %s context is required and not present.", $type));
        }
        // Keep the default value here so that subsequent calls don't have to look
        // it up again.
        $this->contextValue = $default_value;
    }
    return $this->contextValue;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal