entity_view(EntityInterface $entity, $view_mode, $langcode = NULL, $reset = FALSE)
Returns the render array for an entity.
$view_builder = \Drupal::entityTypeManager() ->getViewBuilder($entity->getEntityTypeId()); return $view_builder->view($entity, $view_mode, $langcode);
\Drupal\Core\Entity\EntityInterface $entity: The entity to be rendered.
string $view_mode: The view mode that should be used to display the entity.
string $langcode: (optional) For which language the entity should be rendered, defaults to the current content language.
bool $reset: (optional) Whether to reset the render cache for the requested entity. Defaults to FALSE.
array A render array for the entity.
as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the entity view builder's view() method for creating a render array:
\Drupal\Core\Entity\EntityTypeManagerInterface::getViewBuilder()
\Drupal\Core\Entity\EntityViewBuilderInterface::view()
function entity_view(EntityInterface $entity, $view_mode, $langcode = NULL, $reset = FALSE) { $render_controller = \Drupal::entityManager()->getViewBuilder($entity->getEntityTypeId()); if ($reset) { $render_controller->resetCache([$entity]); } return $render_controller->view($entity, $view_mode, $langcode); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!entity.inc/function/entity_view/8.1.x