function theme_signup_node_output_header in Signup 5.2
Same name and namespace in other branches
- 6.2 theme/node.inc \theme_signup_node_output_header()
- 6 theme/node.inc \theme_signup_node_output_header()
- 7 theme/node.inc \theme_signup_node_output_header()
Return HTML desired at the top of the signup output for a node.
Parameters
$node: The fully loaded node object to generate a header for.
Return value
HTML to display at the top of the signup output.
See also
1 theme call to theme_signup_node_output_header()
- _signup_node_output in ./
signup.module - Generate all the signup-related output for a given node.
File
- ./
signup.module, line 965 - The Signup module (http://drupal.org/project/signup) manages replies to nodes. In particular, it's good for event management. Signup supports sending reminder emails and automatically closing signups for nodes with a start time, via the Event…
Code
function theme_signup_node_output_header($node) {
return '<a name="signup"></a>';
}