comment_view_multiple

function comment_view_multiple

comment_view_multiple($comments, $view_mode = 'full', $langcode = NULL)

Constructs render array from an array of loaded comments.

Parameters

\Drupal\comment\CommentInterface[] $comments: An array of comments as returned by entity_load_multiple().

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

string $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 285
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);
}

© 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_multiple/8.1.x

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部