rsvp_attendees

Definition

rsvp_attendees($rid, $hash = NULL, $action = NULL)
rsvp/rsvp.module, line 569

Code

<?php
function rsvp_attendees($rid, $hash = NULL, $action = NULL) {
  $content = '';
  if (user_access('rsvp newsletters subscribers') && module_exists('simplenews')) {
    $content .= rsvp_list_simplenews($rid);
  }
  if (user_access('rsvp buddylist') && module_exists('buddylist')) {
    $content .= rsvp_list_buddylist($rid);
  }
  if (user_access('rsvp system users')) {
    $content .= rsvp_list_roles($rid);
  }
  $content .= drupal_get_form('rsvp_attendee_form', $rid);
  $content .= rsvp_show_attendees(rsvp_load($rid));
  return $content;
}
?>