class NestedEntityReferencesDetector in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 4.0.x src/Plugin/RelatedEntitiesDetector/NestedEntityReferencesDetector.php \Drupal\lingotek\Plugin\RelatedEntitiesDetector\NestedEntityReferencesDetector
- 3.5.x src/Plugin/RelatedEntitiesDetector/NestedEntityReferencesDetector.php \Drupal\lingotek\Plugin\RelatedEntitiesDetector\NestedEntityReferencesDetector
- 3.6.x src/Plugin/RelatedEntitiesDetector/NestedEntityReferencesDetector.php \Drupal\lingotek\Plugin\RelatedEntitiesDetector\NestedEntityReferencesDetector
- 3.7.x src/Plugin/RelatedEntitiesDetector/NestedEntityReferencesDetector.php \Drupal\lingotek\Plugin\RelatedEntitiesDetector\NestedEntityReferencesDetector
- 3.8.x src/Plugin/RelatedEntitiesDetector/NestedEntityReferencesDetector.php \Drupal\lingotek\Plugin\RelatedEntitiesDetector\NestedEntityReferencesDetector
@RelatedEntitiesDetector ( id = "nested_entity_references", title =
Plugin annotation
@Translation("Get related entity references"),
description = @Translation("The default retrieval of nested entities"),
weight = 5,
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\lingotek\Plugin\RelatedEntitiesDetector\NestedEntityReferencesDetector implements ContainerFactoryPluginInterface, RelatedEntitiesDetectorInterface
Expanded class hierarchy of NestedEntityReferencesDetector
1 file declares its use of NestedEntityReferencesDetector
- NestedEntityReferencesDetectorTest.php in tests/
src/ Unit/ Plugin/ RelatedEntitiesDetector/ NestedEntityReferencesDetectorTest.php
File
- src/
Plugin/ RelatedEntitiesDetector/ NestedEntityReferencesDetector.php, line 23
Namespace
Drupal\lingotek\Plugin\RelatedEntitiesDetectorView source
class NestedEntityReferencesDetector extends PluginBase implements RelatedEntitiesDetectorInterface, ContainerFactoryPluginInterface {
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The entity field manager.
*
* @var \Drupal\Core\Entity\EntityFieldManagerInterface
*/
protected $entityFieldManager;
/**
* The Lingotek configuration service.
*
* @var \Drupal\lingotek\LingotekConfigurationServiceInterface
*/
protected $lingotekConfiguration;
/**
* NestedEntityReferences constructor.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity manager.
* @param \Drupal\Core\Entity\EntityFieldManagerInterface $entityFieldManager
* The entity field manager.
* @param \Drupal\lingotek\LingotekConfigurationServiceInterface $lingotekConfiguration
* The Lingotek configuration service.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entityTypeManager, EntityFieldManagerInterface $entityFieldManager, LingotekConfigurationServiceInterface $lingotekConfiguration) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entityTypeManager;
$this->entityFieldManager = $entityFieldManager;
$this->lingotekConfiguration = $lingotekConfiguration;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('entity_field.manager'), $container
->get('lingotek.configuration'));
}
/**
* {@inheritdoc}
*/
public function extract(ContentEntityInterface &$entity, array &$entities, array &$related, $depth, array $visited) {
$visited[$entity
->bundle()][] = $entity
->id();
$entities[$entity
->getEntityTypeId()][$entity
->id()] = $entity
->getUntranslated();
if ($depth > 0) {
--$depth;
$field_definitions = $this->entityFieldManager
->getFieldDefinitions($entity
->getEntityTypeId(), $entity
->bundle());
foreach ($field_definitions as $k => $definition) {
$field_type = $field_definitions[$k]
->getType();
if ($field_type === 'entity_reference') {
$target_entity_type_id = $field_definitions[$k]
->getFieldStorageDefinition()
->getSetting('target_type');
$target_entity_type = $this->entityTypeManager
->getDefinition($target_entity_type_id);
if ($target_entity_type instanceof ContentEntityType) {
$child_entities = $entity
->get($k)
->referencedEntities();
foreach ($child_entities as $embedded_entity) {
if ($embedded_entity !== NULL) {
// We need to avoid cycles if we have several entity references
// referencing each other.
if (!isset($visited[$embedded_entity
->bundle()]) || !in_array($embedded_entity
->id(), $visited[$embedded_entity
->bundle()])) {
if ($embedded_entity instanceof ContentEntityInterface && $embedded_entity
->isTranslatable() && $this->lingotekConfiguration
->isEnabled($embedded_entity
->getEntityTypeId(), $embedded_entity
->bundle())) {
if (!$this->lingotekConfiguration
->isFieldLingotekEnabled($entity
->getEntityTypeId(), $entity
->bundle(), $k)) {
$entities = $this
->extract($embedded_entity, $entities, $related, $depth, $visited);
}
else {
$related[$embedded_entity
->getEntityTypeId()][$embedded_entity
->id()] = $embedded_entity
->getUntranslated();
}
}
}
}
}
}
}
}
}
return $entities;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NestedEntityReferencesDetector:: |
protected | property | The entity field manager. | |
NestedEntityReferencesDetector:: |
protected | property | The entity type manager. | |
NestedEntityReferencesDetector:: |
protected | property | The Lingotek configuration service. | |
NestedEntityReferencesDetector:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
NestedEntityReferencesDetector:: |
public | function |
Extract nested and related content. Overrides RelatedEntitiesDetectorInterface:: |
|
NestedEntityReferencesDetector:: |
public | function |
NestedEntityReferences constructor. Overrides PluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. |