public function BlockContentViewBuilder::viewMultiple in Drupal 10
Same name and namespace in other branches
- 8 core/modules/block_content/src/BlockContentViewBuilder.php \Drupal\block_content\BlockContentViewBuilder::viewMultiple()
- 9 core/modules/block_content/src/BlockContentViewBuilder.php \Drupal\block_content\BlockContentViewBuilder::viewMultiple()
Builds the render array for the provided entities.
Parameters
array $entities: An array of entities implementing EntityInterface to view.
string $view_mode: (optional) The view mode that should be used to render the entity.
string $langcode: (optional) For which language the entity should be rendered, defaults to the current content language.
Return value
A render array for the entities, indexed by the same keys as the entities array passed in $entities.
Throws
\InvalidArgumentException Can be thrown when the set of parameters is inconsistent, like when trying to view Comments and passing a Node which is not the one the comments belongs to, or not passing one, and having the comments node not be available for loading.
Overrides EntityViewBuilder::viewMultiple
1 call to BlockContentViewBuilder::viewMultiple()
- BlockContentViewBuilder::view in core/
modules/ block_content/ src/ BlockContentViewBuilder.php - Builds the render array for the provided entity.
File
- core/
modules/ block_content/ src/ BlockContentViewBuilder.php, line 30
Class
- BlockContentViewBuilder
- View builder handler for custom blocks.
Namespace
Drupal\block_contentCode
public function viewMultiple(array $entities = [], $view_mode = 'full', $langcode = NULL) {
$build_list = parent::viewMultiple($entities, $view_mode, $langcode);
// Apply the buildMultiple() #pre_render callback immediately, to make
// bubbling of attributes and contextual links to the actual block work.
// @see \Drupal\block\BlockViewBuilder::buildBlock()
unset($build_list['#pre_render'][0]);
return $this
->buildMultiple($build_list);
}