You are here

function comment_view_multiple in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/comment/comment.module \comment_view_multiple()

Constructs render array from an array of loaded comments.

Parameters

$comments: An array of comments as returned by entity_load_multiple().

$view_mode: View mode; e.g., 'full', 'teaser', etc.

$langcode: (optional) A string indicating the language field values are to be shown in. If no language is provided the current content language is used. Defaults to NULL.

Return value

array An array in the format expected by drupal_render().

Deprecated

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

See also

drupal_render()

File

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

Code

function comment_view_multiple($comments, $view_mode = 'full', $langcode = NULL) {
  return entity_view_multiple($comments, $view_mode, $langcode);
}