You are here

function theme_signup_node_output_header in Signup 7

Same name and namespace in other branches
  1. 5.2 signup.module \theme_signup_node_output_header()
  2. 6.2 theme/node.inc \theme_signup_node_output_header()
  3. 6 theme/node.inc \theme_signup_node_output_header()

Return HTML desired at the top of the signup output for a node.

Parameters

array $variables: An array of variables containing:

  • 'node': The fully loaded node object to generate a header for.

Return value

string HTML to display at the top of the signup output.

See also

_signup_node_output()

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 61
Theme functions when viewing a signup-enabled node.

Code

function theme_signup_node_output_header($variables) {
  return '<a name="signup"></a>';
}