function ContextAwarePluginBase::getContext

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php \Drupal\Core\Plugin\ContextAwarePluginBase::getContext()
  2. 8.9.x core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::getContext()

Overrides ContextAwarePluginInterface::getContext

1 call to ContextAwarePluginBase::getContext()
ContextAwarePluginBase::getContexts in core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php
Gets the defined contexts.

File

core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php, line 119

Class

ContextAwarePluginBase
Base class for plugins that are context aware.

Namespace

Drupal\Component\Plugin

Code

public function getContext($name) {
    // Check for a valid context value.
    if (!isset($this->context[$name])) {
        $this->context[$name] = new Context($this->getContextDefinition($name));
    }
    return $this->context[$name];
}

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