protected function ContextDefinition::getSampleValues in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Plugin/Context/ContextDefinition.php \Drupal\Core\Plugin\Context\ContextDefinition::getSampleValues()
Returns typed data objects representing this context definition.
This should return as many objects as needed to reflect the variations of the constraints it supports.
@yield \Drupal\Core\TypedData\TypedDataInterface The set of typed data object.
1 method overrides ContextDefinition::getSampleValues()
- EntityContextDefinition::getSampleValues in core/
lib/ Drupal/ Core/ Plugin/ Context/ EntityContextDefinition.php - Returns typed data objects representing this context definition.
File
- core/
lib/ Drupal/ Core/ Plugin/ Context/ ContextDefinition.php, line 335
Class
- ContextDefinition
- Defines a class for context definitions.
Namespace
Drupal\Core\Plugin\ContextCode
protected function getSampleValues() {
(yield $this
->getTypedDataManager()
->create($this
->getDataDefinition()));
}