You are here

function theme_signup_admin_page in Signup 6.2

Same name and namespace in other branches
  1. 5.2 signup.module \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 includes/admin.signup_administration.inc
Print the admin signup overview page located at admin/content/signup.

File

theme/admin.inc, line 26
Theme functions for signup administration.

Code

function theme_signup_admin_page($filter_status_form, $signup_admin_form) {
  $output = $filter_status_form;
  $output .= $signup_admin_form;
  return $output;
}