You are here

popup_nodereference.util.inc in Popup 7

Same filename and directory in other branches
  1. 8 modules/popup_nodereference/includes/popup_nodereference.util.inc

File

modules/popup_nodereference/includes/popup_nodereference.util.inc
View source
<?php

/* Renders a series of node bodies */
function _popup_nodereference_render_group($nids, $attributes) {
  module_load_include('inc', 'popup', 'includes/popup.api');
  $rendered = '';
  foreach ($nids as $nid) {
    $node_attribs = $attributes;
    $node_attribs['node'] = $nid;
    $rendered .= _popup_node($node_attribs, 'body');
  }
  return $rendered;
}

Functions