protected function PerComponentEntityDisplay::getEntity in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/migrate/destination/PerComponentEntityDisplay.php \Drupal\migrate\Plugin\migrate\destination\PerComponentEntityDisplay::getEntity()
- 9 core/modules/migrate/src/Plugin/migrate/destination/PerComponentEntityDisplay.php \Drupal\migrate\Plugin\migrate\destination\PerComponentEntityDisplay::getEntity()
Gets the entity.
Parameters
string $entity_type: The entity type to retrieve.
string $bundle: The entity bundle.
string $mode: The display mode.
Return value
\Drupal\Core\Entity\Display\EntityDisplayInterface The entity display object.
Overrides ComponentEntityDisplayBase::getEntity
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ destination/ PerComponentEntityDisplay.php, line 58
Class
- PerComponentEntityDisplay
- This class imports one component of an entity display.
Namespace
Drupal\migrate\Plugin\migrate\destinationCode
protected function getEntity($entity_type, $bundle, $view_mode) {
return $this->entityDisplayRepository
->getViewDisplay($entity_type, $bundle, $view_mode);
}