'. t('Signups closed for this %node_type', array('%node_type' => node_get_types('name', $node->type))) .''; $output .= $current_signup; return $output; } /** * Controls the output for anonymous users who can't signup. * * @param $anon_login_text * The translated HTML help text telling users to login (and if allowed on * this site, register) so they can signup, including login/register links. * * @return * The themed HTML to display the login (and maybe register) help text. */ function theme_signup_anonymous_user_login_text($anon_login_text) { if (!empty($anon_login_text)) { return '
'. $anon_login_text .'
'; } } /** * Return HTML desired at the top of the signup output for a node. * * @param $node * The fully loaded node object to generate a header for. * * @return * HTML to display at the top of the signup output. * * @see _signup_node_output() */ function theme_signup_node_output_header($node) { return ''; }