public function ContextAwarePluginInterface::setContextValue

Sets the value for a defined context.

Parameters

string $name: The name of the context in the plugin definition.

mixed $value: The value to set the context to. The value has to validate against the provided context definition.

Return value

\Drupal\Component\Plugin\ContextAwarePluginInterface. A context aware plugin object for chaining.

Throws

\Drupal\Component\Plugin\Exception\PluginException If the value does not pass validation.

1 method overrides ContextAwarePluginInterface::setContextValue()

File

drupal/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php, line 105
Contains \Drupal\Component\Plugin\ContextAwarePluginInterface.

Class

ContextAwarePluginInterface
Interface for defining context aware plugins.

Namespace

Drupal\Component\Plugin

Code

public function setContextValue($name, $value);