function theme_signup_node_output_header in Signup 6.2
Same name and namespace in other branches
- 5.2 signup.module \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 includes/
node_output.inc - Generate all the signup-related output for a given node.
File
- theme/
node.inc, line 57 - Theme functions when viewing a signup-enabled node.
Code
function theme_signup_node_output_header($node) {
return '<a name="signup"></a>';
}