public EntityViewDisplayInterface::buildMultiple(array $entities)
Builds a renderable array for the components of a set of entities.
This only includes the components handled by the Display object, but excludes 'extra fields', that are typically rendered through specific, ad-hoc code in EntityViewBuilderInterface::buildComponents() or in hook_entity_view() implementations.
hook_entity_display_build_alter() is invoked on each entity, allowing 3rd party code to alter the render array.
Parameters
\Drupal\Core\Entity\FieldableEntityInterface[] $entities: The entities being displayed.
Return value
array A renderable array for the entities, indexed by the same keys as the $entities array parameter.
See also
hook_entity_display_build_alter()
File
- core/lib/Drupal/Core/Entity/Display/EntityViewDisplayInterface.php, line 47
Class
- EntityViewDisplayInterface
- Provides a common interface for entity view displays.
Namespace
Drupal\Core\Entity\Display
Code
public function buildMultiple(array $entities);
Please login to continue.