function ContextAwarePluginBase::createContextFromConfiguration

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

Return value

\Drupal\Core\Plugin\Context\ContextInterface[]

Overrides ContextAwarePluginBase::createContextFromConfiguration

File

core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php, line 34

Class

ContextAwarePluginBase
Base class for plugins that are context aware.

Namespace

Drupal\Core\Plugin

Code

protected function createContextFromConfiguration(array $context_configuration) {
    // This method is overridden so that it will use
    // \Drupal\Core\Plugin\Context\Context instead.
    $contexts = [];
    foreach ($context_configuration as $key => $value) {
        $context_definition = $this->getContextDefinition($key);
        $contexts[$key] = new Context($context_definition, $value);
    }
    return $contexts;
}

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