public property EntityReferenceSelection::$group in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Annotation/EntityReferenceSelection.php \Drupal\Core\Entity\Annotation\EntityReferenceSelection::group
- 9 core/lib/Drupal/Core/Entity/Annotation/EntityReferenceSelection.php \Drupal\Core\Entity\Annotation\EntityReferenceSelection::group
The selection plugin group.
This property is used to allow selection plugins to target a specific entity type while also inheriting the code of an existing selection plugin. For example, if we want to override the NodeSelection from the 'default' selection type, we can define the annotation of a new plugin as follows:
id = "default:node_advanced",
entity_types = {"node"},
group = "default",
weight = 5
Type: string
File
- core/
lib/ Drupal/ Core/ Entity/ Annotation/ EntityReferenceSelection.php, line 60
Class
- EntityReferenceSelection
- Defines an EntityReferenceSelection plugin annotation object.
Namespace
Drupal\Core\Entity\AnnotationCode
public $group;