You are here

function theme_signup_admin_page in Signup 5.2

Same name and namespace in other branches
  1. 6.2 theme/admin.inc \theme_signup_admin_page()
  2. 6 theme/admin.inc \theme_signup_admin_page()
  3. 7 theme/admin.inc \theme_signup_admin_page()

Controls the output of the signup administration overview page.

This page is located at admin/content/signup, and allows site-wide signup administrators to view signup-related information, close/open signups, etc, for all signup-enabled nodes on the site. There's a form to filter the results by signup status, which is rendered at the top of the page by default.

Parameters

$filter_status_form: HTML representation of the signup status filter form.

$signup_admin_form: HTML representation of the main signup administration form.

Return value

Themed output for the signup administration overview page.

1 theme call to theme_signup_admin_page()
signup_admin_page in ./signup.module
Prints the admin signup overview page located at admin/content/signup

File

./signup.module, line 1195
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_admin_page($filter_status_form, $signup_admin_form) {
  $output = $filter_status_form;
  $output .= $signup_admin_form;
  return $output;
}