t('!users signed up', array('!users' => format_plural((count($registered_signups) + count($anon_signups)), '1 individual', '@count individuals'))))); $rows = array(); foreach ($registered_signups as $signup) { $rows[] = array(theme('username', $signup)); } if (!empty($anon_signups)) { $rows[] = array(t('!count anonymous', array('!count' => count($anon_signups)))); } return theme('table', $header, $rows); } /** * Format a user signup for display in a schedule list. * * @param node * The node which needs theming */ function theme_signup_user_schedule($node) { $output = ''; $output .= '

'. l($node->title, "node/$node->nid") .'

'; return $output; }