You are here

public function ContextAwarePluginBase::getContextValue in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php \Drupal\Component\Plugin\ContextAwarePluginBase::getContextValue()

Gets the value for a defined context.

Parameters

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

Return value

mixed The currently set context value.

Throws

\Drupal\Component\Plugin\Exception\PluginException If the requested context is not set.

Overrides ContextAwarePluginInterface::getContextValue

9 calls to ContextAwarePluginBase::getContextValue()
ConditionTestDualUser::evaluate in core/modules/system/tests/modules/condition_test/src/Plugin/Condition/ConditionTestDualUser.php
Evaluates the condition and returns TRUE or FALSE accordingly.
Language::evaluate in core/modules/language/src/Plugin/Condition/Language.php
Evaluates the condition and returns TRUE or FALSE accordingly.
MockComplexContextBlock::getTitle in core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php
MockUserNameBlock::getTitle in core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockUserNameBlock.php
NodeType::evaluate in core/modules/node/src/Plugin/Condition/NodeType.php
Evaluates the condition and returns TRUE or FALSE accordingly.

... See full list

File

core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php, line 132
Contains \Drupal\Component\Plugin\ContextAwarePluginBase.

Class

ContextAwarePluginBase
Base class for plugins that are context aware.

Namespace

Drupal\Component\Plugin

Code

public function getContextValue($name) {
  return $this
    ->getContext($name)
    ->getContextValue();
}