You are here

public function RedhenOrgRouteContext::getRuntimeContexts in RedHen CRM 8

Gets runtime context values for the given context IDs.

For context-aware plugins to function correctly, all of the contexts that they require must be populated with values. So this method should set a value for each context that it adds. For example:


  // Determine a specific node to pass as context to a block.
  $node = ...

  // Set that specific node as the value of the 'node' context.
  $context = EntityContext::fromEntity($node);
  return ['node' => $context];

On the other hand, there are cases, on which providers no longer are possible to provide context objects, even without the value, so the caller should not expect it.

Parameters

string[] $unqualified_context_ids: The requested context IDs. The context provider must only return contexts for those IDs.

Return value

\Drupal\Core\Plugin\Context\ContextInterface[] The determined available contexts, keyed by the unqualified context_id.

Overrides ContextProviderInterface::getRuntimeContexts

See also

\Drupal\Core\Plugin\Context\ContextProviderInterface:getAvailableContexts()

File

modules/redhen_org/src/ContextProvider/RedhenOrgRouteContext.php, line 43

Class

RedhenOrgRouteContext
Sets the current org as context on redhen org routes.

Namespace

Drupal\redhen_org\ContextProvider

Code

public function getRuntimeContexts(array $unqualified_context_ids) {
  $context_definition = new ContextDefinition('entity:redhen_org', NULL, FALSE);
  $value = NULL;
  if ($org = $this->routeMatch
    ->getParameter('redhen_org')) {
    $value = $org;
  }
  elseif ($this->routeMatch
    ->getRouteName() == 'entity.redhen_org.add_form') {
    $org_type = $this->routeMatch
      ->getParameter('redhen_org_type');
    $value = Org::create([
      'type' => $org_type
        ->id(),
    ]);
  }
  $cacheability = new CacheableMetadata();
  $cacheability
    ->setCacheContexts([
    'route',
  ]);
  $context = new Context($context_definition, $value);
  $context
    ->addCacheableDependency($cacheability);
  return [
    'redhen_org' => $context,
  ];
}