You are here

public function ContextAwarePluginBase::getContexts in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::getContexts()

Gets the defined contexts.

Return value

array The set context objects.

Throws

\Drupal\Component\Plugin\Exception\ContextException If contexts are defined but not set.

Overrides ContextAwarePluginInterface::getContexts

1 call to ContextAwarePluginBase::getContexts()
ContextAwarePluginBase::validateContexts in core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php
Validates the set values for the defined contexts.

File

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

Class

ContextAwarePluginBase
Base class for plugins that are context aware.

Namespace

Drupal\Component\Plugin

Code

public function getContexts() {

  // Make sure all context objects are initialized.
  foreach ($this
    ->getContextDefinitions() as $name => $definition) {
    $this
      ->getContext($name);
  }
  return $this->context;
}