W3cubDocs

/Drupal 8

function node_view_multiple

node_view_multiple($nodes, $view_mode = 'teaser', $langcode = NULL)

Constructs a drupal_render() style array from an array of loaded nodes.

Parameters

$nodes: An array of nodes as returned by Node::loadMultiple().

$view_mode: (optional) View mode, e.g., 'full', 'teaser', etc. Defaults to 'teaser.'

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

Return value

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

File

core/modules/node/node.module, line 798
The core module that allows content to be submitted to the site.

Code

function node_view_multiple($nodes, $view_mode = 'teaser', $langcode = NULL) {
  return entity_view_multiple($nodes, $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!node!node.module/function/node_view_multiple/8.1.x