protected function PerComponentEntityDisplay::getEntity in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Plugin/migrate/destination/PerComponentEntityDisplay.php \Drupal\migrate\Plugin\migrate\destination\PerComponentEntityDisplay::getEntity()
Get 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 24 - Contains \Drupal\migrate\Plugin\migrate\destination\PerComponentEntityDisplay.
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 entity_get_display($entity_type, $bundle, $view_mode);
}