function comment_view

comment_view(CommentInterface $comment, $view_mode = 'full', $langcode = NULL)

Generates an array for rendering a comment.

Parameters

\Drupal\comment\CommentInterface $comment: The comment object.

string $view_mode: (optional) View mode; for instance, 'full', 'teaser', etc. Defaults to 'full'.

string $langcode: (optional) A language code to use for rendering. Defaults to the global content language of the current request.

Return value

array An array as expected by drupal_render().

Deprecated

in Drupal 8.x and will be removed before Drupal 9.0. Use \Drupal::entityManager()->getViewBuilder('comment')->view().

File

core/modules/comment/comment.module, line 260
Enables users to comment on published content.

Code

function comment_view(CommentInterface $comment, $view_mode = 'full', $langcode = NULL) {
  return entity_view($comment, $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!modules!comment!comment.module/function/comment_view/8.1.x