class EntityReferenceSelection
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Entity/Attribute/EntityReferenceSelection.php \Drupal\Core\Entity\Attribute\EntityReferenceSelection
- 11.x core/lib/Drupal/Core/Entity/Annotation/EntityReferenceSelection.php \Drupal\Core\Entity\Annotation\EntityReferenceSelection
Defines an EntityReferenceSelection plugin annotation object.
Plugin Namespace: Plugin\EntityReferenceSelection
For a working example, see \Drupal\comment\Plugin\EntityReferenceSelection\CommentSelection
Hierarchy
- class \Drupal\Component\Annotation\Plugin extends \Drupal\Component\Annotation\AnnotationInterface
- class \Drupal\Core\Entity\Annotation\EntityReferenceSelection implements \Drupal\Component\Annotation\Plugin
Expanded class hierarchy of EntityReferenceSelection
See also
\Drupal\Core\Entity\EntityReferenceSelection\SelectionPluginManager
\Drupal\Core\Entity\EntityReferenceSelection\SelectionInterface
Related topics
10 classes are annotated with EntityReferenceSelection
- Broken in core/
lib/ Drupal/ Core/ Entity/ Plugin/ EntityReferenceSelection/ Broken.php - Defines a fallback plugin for missing entity_reference selection plugins.
- CommentSelection in core/
modules/ comment/ src/ Plugin/ EntityReferenceSelection/ CommentSelection.php - Provides specific access control for the comment entity type.
- DefaultSelection in core/
lib/ Drupal/ Core/ Entity/ Plugin/ EntityReferenceSelection/ DefaultSelection.php - Default plugin implementation of the Entity Reference Selection plugin.
- FileSelection in core/
modules/ file/ src/ Plugin/ EntityReferenceSelection/ FileSelection.php - Provides specific access control for the file entity type.
- MediaSelection in core/
modules/ media/ src/ Plugin/ EntityReferenceSelection/ MediaSelection.php - Provides specific access control for the media entity type.
File
-
core/
lib/ Drupal/ Core/ Entity/ Annotation/ EntityReferenceSelection.php, line 21
Namespace
Drupal\Core\Entity\AnnotationView source
class EntityReferenceSelection extends Plugin {
/**
* The plugin ID.
*
* There are some implementation bugs that make the plugin available only if
* the ID follows a specific pattern. It must be either identical to group or
* prefixed with the group. E.g. if the group is "foo" the ID must be either
* "foo" or "foo:bar".
*
* @var string
*/
public $id;
/**
* The human-readable name of the selection plugin.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* 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:
* @code
* id = "default:node_advanced",
* entity_types = {"node"},
* group = "default",
* weight = 5
* @endcode
*
* @var string
*/
public $group;
/**
* An array of entity types that can be referenced by this plugin.
*
* Defaults to all entity types.
*
* This property is optional and it does not need to be declared.
*
* @var array
*/
public $entity_types = [];
/**
* The weight of the plugin in its group.
*
* This property is used to select the "best" plugin within a group.
*
* @var int
*/
public $weight;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.