public function ContextAwarePluginBase::getContext in Zircon Profile 8
Same name in this branch
- 8 core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php \Drupal\Core\Plugin\ContextAwarePluginBase::getContext()
- 8 core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::getContext()
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::getContext()
Gets a defined context.
Parameters
string $name: The name of the context in the plugin definition.
Return value
\Drupal\Component\Plugin\Context\ContextInterface The context object.
Throws
\Drupal\Component\Plugin\Exception\PluginException If the requested context is not set.
Overrides ContextAwarePluginInterface::getContext
1 call to ContextAwarePluginBase::getContext()
- ContextAwarePluginBase::getContexts in core/
lib/ Drupal/ Component/ Plugin/ ContextAwarePluginBase.php - Gets the defined contexts.
1 method overrides ContextAwarePluginBase::getContext()
- ContextAwarePluginBase::getContext in core/
lib/ Drupal/ Core/ Plugin/ ContextAwarePluginBase.php
File
- core/
lib/ Drupal/ Component/ Plugin/ ContextAwarePluginBase.php, line 103 - Contains \Drupal\Component\Plugin\ContextAwarePluginBase.
Class
- ContextAwarePluginBase
- Base class for plugins that are context aware.
Namespace
Drupal\Component\PluginCode
public function getContext($name) {
// Check for a valid context value.
if (!isset($this->context[$name])) {
$this->context[$name] = new Context($this
->getContextDefinition($name));
}
return $this->context[$name];
}