public function ContextAwarePluginBase::setContextValue in Zircon Profile 8
Same name in this branch
- 8 core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php \Drupal\Core\Plugin\ContextAwarePluginBase::setContextValue()
- 8 core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::setContextValue()
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php \Drupal\Core\Plugin\ContextAwarePluginBase::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.
Overrides ContextAwarePluginBase::setContextValue
File
- core/
lib/ Drupal/ Core/ Plugin/ ContextAwarePluginBase.php, line 77 - Contains \Drupal\Core\Plugin\ContextAwarePluginBase.
Class
- ContextAwarePluginBase
- Base class for plugins that are context aware.
Namespace
Drupal\Core\PluginCode
public function setContextValue($name, $value) {
$this->context[$name] = Context::createFromContext($this
->getContext($name), $value);
return $this;
}