public function ContextAwarePluginBase::getContextDefinition in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php \Drupal\Core\Plugin\ContextAwarePluginBase::getContextDefinition()
- 8 core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::getContextDefinition()
Return value
\Drupal\Core\Plugin\Context\ContextDefinitionInterface
Overrides ContextAwarePluginBase::getContextDefinition
2 calls to ContextAwarePluginBase::getContextDefinition()
- ContextAwarePluginBase::createContextFromConfiguration in core/
lib/ Drupal/ Core/ Plugin/ ContextAwarePluginBase.php - ContextAwarePluginBase::getContext in core/
lib/ Drupal/ Core/ Plugin/ ContextAwarePluginBase.php - This code is identical to the Component in order to pick up a different Context class.
File
- core/
lib/ Drupal/ Core/ Plugin/ ContextAwarePluginBase.php, line 114
Class
- ContextAwarePluginBase
- Base class for plugins that are context aware.
Namespace
Drupal\Core\PluginCode
public function getContextDefinition($name) {
return parent::getContextDefinition($name);
}