public static function EntityViewDisplay::collectRenderDisplay in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Entity/EntityViewDisplay.php \Drupal\Core\Entity\Entity\EntityViewDisplay::collectRenderDisplay()
Returns the display object used to render an entity.
See the collectRenderDisplays() method for details.
Parameters
\Drupal\Core\Entity\FieldableEntityInterface $entity: The entity being rendered.
string $view_mode: The view mode.
Return value
\Drupal\Core\Entity\Display\EntityViewDisplayInterface The display object that should be used to render the entity.
See also
\Drupal\Core\Entity\Entity\EntityViewDisplay::collectRenderDisplays()
5 calls to EntityViewDisplay::collectRenderDisplay()
- DateTestBase::renderTestEntity in core/
modules/ datetime/ tests/ src/ Functional/ DateTestBase.php - Renders an entity_test and sets the output in the internal browser.
- EntityViewBuilder::getSingleFieldDisplay in core/
lib/ Drupal/ Core/ Entity/ EntityViewBuilder.php - Gets an EntityViewDisplay for rendering an individual field.
- LayoutEntityHelperTrait::getSectionStorageForEntity in core/
modules/ layout_builder/ src/ LayoutEntityHelperTrait.php - Gets the section storage for an entity.
- LayoutEntityHelperTraitTest::testGetSectionStorageForEntity in core/
modules/ layout_builder/ tests/ src/ Kernel/ LayoutEntityHelperTraitTest.php - @covers ::getSectionStorageForEntity
- SeparatorTranslationTest::testSeparatorTranslation in core/
modules/ datetime_range/ tests/ src/ Kernel/ SeparatorTranslationTest.php - Tests the translation of the range separator.
File
- core/
lib/ Drupal/ Core/ Entity/ Entity/ EntityViewDisplay.php, line 165
Class
- EntityViewDisplay
- Configuration entity that contains display options for all components of a rendered entity in a given view mode.
Namespace
Drupal\Core\Entity\EntityCode
public static function collectRenderDisplay(FieldableEntityInterface $entity, $view_mode) {
$displays = static::collectRenderDisplays([
$entity,
], $view_mode);
return $displays[$entity
->bundle()];
}