class EntityReferenceRevisions in Entity Reference Revisions 8
Same name in this branch
- 8 src/Plugin/DataType/EntityReferenceRevisions.php \Drupal\entity_reference_revisions\Plugin\DataType\EntityReferenceRevisions
- 8 src/Plugin/views/display/EntityReferenceRevisions.php \Drupal\entity_reference_revisions\Plugin\views\display\EntityReferenceRevisions
- 8 src/Plugin/views/style/EntityReferenceRevisions.php \Drupal\entity_reference_revisions\Plugin\views\style\EntityReferenceRevisions
- 8 src/Plugin/views/row/EntityReferenceRevisions.php \Drupal\entity_reference_revisions\Plugin\views\row\EntityReferenceRevisions
- 8 src/Plugin/migrate/destination/EntityReferenceRevisions.php \Drupal\entity_reference_revisions\Plugin\migrate\destination\EntityReferenceRevisions
Defines an 'entity_reference_revisions' data type.
This serves as 'entity' property of entity reference field items and gets its value set from the parent, i.e. LanguageItem.
The plain value of this reference is the entity object, i.e. an instance of \Drupal\Core\Entity\EntityInterface. For setting the value the entity object or the entity ID may be passed.
Note that the definition of the referenced entity's type is required, whereas defining referencable entity bundle(s) is optional. A reference defining the type and bundle of the referenced entity can be created as following:
$definition = \Drupal\Core\Entity\EntityDefinition::create($entity_type)
->addConstraint('Bundle', $bundle);
\Drupal\Core\TypedData\DataReferenceDefinition::create('entity_revision')
->setTargetDefinition($definition);
Plugin annotation
@DataType(
id = "entity_revision_reference",
label = @Translation("Entity reference revisions"),
definition_class = "\Drupal\Core\TypedData\DataReferenceDefinition"
)
Hierarchy
- class \Drupal\Core\TypedData\TypedData implements PluginInspectionInterface, TypedDataInterface uses DependencySerializationTrait, StringTranslationTrait, TypedDataTrait
- class \Drupal\Core\TypedData\DataReferenceBase implements DataReferenceInterface
- class \Drupal\Core\Entity\Plugin\DataType\EntityReference
- class \Drupal\entity_reference_revisions\Plugin\DataType\EntityReferenceRevisions
- class \Drupal\Core\Entity\Plugin\DataType\EntityReference
- class \Drupal\Core\TypedData\DataReferenceBase implements DataReferenceInterface
Expanded class hierarchy of EntityReferenceRevisions
File
- src/
Plugin/ DataType/ EntityReferenceRevisions.php, line 34
Namespace
Drupal\entity_reference_revisions\Plugin\DataTypeView source
class EntityReferenceRevisions extends EntityReference {
/**
* The entity revision ID.
*
* @var integer|string
*/
protected $revision_id;
/**
* The entity ID.
*
* @var integer|string
*/
protected $id;
/**
* Returns the definition of the referenced entity.
*
* @return \Drupal\Core\Entity\TypedData\EntityDataDefinitionInterface
* The reference target's definition.
*/
public function getTargetDefinition() {
return $this->definition
->getTargetDefinition();
}
/**
* Checks whether the target entity has not been saved yet.
*
* @return bool
* TRUE if the entity is new, FALSE otherwise.
*/
public function isTargetNew() {
// If only an ID is given, the reference cannot be a new entity.
return !isset($this->id) && isset($this->target) && $this->target
->getValue()
->isNew();
}
/**
* {@inheritdoc}
*/
public function getTarget() {
if (!isset($this->target) && isset($this->revision_id)) {
$storage = \Drupal::entityTypeManager()
->getStorage($this
->getTargetDefinition()
->getEntityTypeId());
// By default always load the default revision, so caches get used.
$entity = $storage
->load($this->id);
if ($entity !== NULL && $entity
->getRevisionId() != $this->revision_id) {
// A non-default revision is a referenced, so load this one.
$entity = $storage
->loadRevision($this->revision_id);
}
$this->target = isset($entity) ? $entity
->getTypedData() : NULL;
}
return $this->target;
}
/**
* {@inheritdoc}
*/
public function getTargetIdentifier() {
if (isset($this->id)) {
return $this->id;
}
elseif ($entity = $this
->getValue()) {
return $entity
->id();
}
}
/**
* {@inheritdoc}
*/
public function setValue($value, $notify = TRUE) {
unset($this->target);
unset($this->id);
unset($this->revision_id);
// Both the entity ID and the entity object may be passed as value. The
// reference may also be unset by passing NULL as value.
if (!isset($value)) {
$this->target = NULL;
}
elseif (is_object($value) && $value instanceof EntityInterface) {
$this->target = $value
->getTypedData();
}
elseif (!is_scalar($value['target_id']) || !is_scalar($value['target_revision_id']) || $this
->getTargetDefinition()
->getEntityTypeId() === NULL) {
throw new \InvalidArgumentException('Value is not a valid entity.');
}
else {
$this->id = $value['target_id'];
$this->revision_id = $value['target_revision_id'];
}
// Notify the parent of any changes.
if ($notify && isset($this->parent)) {
$this->parent
->onChange($this->name);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DataReferenceBase:: |
protected | property | The referenced data. | |
DataReferenceBase:: |
public | function |
Gets the data value. Overrides TypedData:: |
|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
EntityReference:: |
public | function |
Returns a string representation of the data. Overrides DataReferenceBase:: |
|
EntityReferenceRevisions:: |
protected | property |
The entity ID. Overrides EntityReference:: |
|
EntityReferenceRevisions:: |
protected | property | The entity revision ID. | |
EntityReferenceRevisions:: |
public | function |
Gets the referenced data. Overrides EntityReference:: |
|
EntityReferenceRevisions:: |
public | function |
Returns the definition of the referenced entity. Overrides EntityReference:: |
|
EntityReferenceRevisions:: |
public | function |
Gets the identifier of the referenced data. Overrides EntityReference:: |
|
EntityReferenceRevisions:: |
public | function |
Checks whether the target entity has not been saved yet. Overrides EntityReference:: |
|
EntityReferenceRevisions:: |
public | function |
Sets the data value. Overrides EntityReference:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TypedData:: |
protected | property | The data definition. | 1 |
TypedData:: |
protected | property | The property name. | |
TypedData:: |
protected | property | The parent typed data object. | |
TypedData:: |
public | function |
Applies the default value. Overrides TypedDataInterface:: |
3 |
TypedData:: |
public static | function |
Constructs a TypedData object given its definition and context. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Gets a list of validation constraints. Overrides TypedDataInterface:: |
9 |
TypedData:: |
public | function |
Gets the data definition. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Returns the name of a property or item. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Returns the parent data structure; i.e. either complex data or a list. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
|
TypedData:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
TypedData:: |
public | function |
Returns the property path of the data. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Returns the root of the typed data tree. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Sets the context of a property or item via a context aware parent. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function |
Validates the currently set data value. Overrides TypedDataInterface:: |
|
TypedData:: |
public | function | Constructs a TypedData object given its definition and context. | 3 |
TypedDataTrait:: |
protected | property | The typed data manager used for creating the data types. | |
TypedDataTrait:: |
public | function | Gets the typed data manager. | 2 |
TypedDataTrait:: |
public | function | Sets the typed data manager. | 2 |