public function ContextAwarePluginBase::setContext in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::setContext()
Set a context on this plugin.
Parameters
string $name: The name of the context in the plugin configuration.
\Drupal\Component\Plugin\Context\ContextInterface $context: The context object to set.
Overrides ContextAwarePluginInterface::setContext
File
- lib/
Drupal/ Component/ Plugin/ ContextAwarePluginBase.php, line 114 - Contains \Drupal\Component\Plugin\ContextAwarePluginBase.
Class
- ContextAwarePluginBase
- Base class for plugins that are context aware.
Namespace
Drupal\Component\PluginCode
public function setContext($name, ContextInterface $context) {
$this->context[$name] = $context;
}