public function BlockContentViewBuilder::view in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/block_content/src/BlockContentViewBuilder.php \Drupal\block_content\BlockContentViewBuilder::view()
Builds the render array for the provided entity.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity to render.
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
array A render array for the entity.
Throws
\InvalidArgumentException Can be thrown when the set of parameters is inconsistent, like when trying to view a Comment and passing a Node which is not the one the comment belongs to, or not passing one, and having the comment node not be available for loading.
Overrides EntityViewBuilder::view
File
- core/
modules/ block_content/ src/ BlockContentViewBuilder.php, line 22 - Contains \Drupal\block_content\BlockContentViewBuilder.
Class
- BlockContentViewBuilder
- Render controller for custom blocks.
Namespace
Drupal\block_contentCode
public function view(EntityInterface $entity, $view_mode = 'full', $langcode = NULL) {
return $this
->viewMultiple(array(
$entity,
), $view_mode, $langcode)[0];
}