public function TypedDataEntityRelationship::getRelationship in Chaos Tool Suite (ctools) 8.3
Generates a context based on this plugin's configuration.
Return value
\Drupal\Core\Plugin\Context\ContextInterface
Overrides TypedDataRelationship::getRelationship
File
- src/
Plugin/ Relationship/ TypedDataEntityRelationship.php, line 19
Class
- TypedDataEntityRelationship
- Plugin annotation @Relationship( id = "typed_data_entity_relationship", deriver = "\Drupal\ctools\Plugin\Deriver\TypedDataEntityRelationshipDeriver" )
Namespace
Drupal\ctools\Plugin\RelationshipCode
public function getRelationship() {
$plugin_definition = $this
->getPluginDefinition();
$entity_type = $this
->getData($this
->getContext('base'))
->getDataDefinition()
->getSetting('target_type');
$context_definition = new EntityContextDefinition("entity:{$entity_type}", $plugin_definition['label']);
$context_value = NULL;
// If the 'base' context has a value, then get the property value to put on
// the context (otherwise, mapping hasn't occurred yet and we just want to
// return the context with the right definition and no value).
if ($this
->getContext('base')
->hasContextValue()) {
$context_value = $this
->getData($this
->getContext('base'))->entity;
}
$context_definition
->setDefaultValue($context_value);
return new Context($context_definition, $context_value);
}