You are here

function theme_signup_admin_page in Signup 7

Same name and namespace in other branches
  1. 5.2 signup.module \theme_signup_admin_page()
  2. 6.2 theme/admin.inc \theme_signup_admin_page()
  3. 6 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

array $variables: An array of variables containing:

  • 'filter_status_form': HTML representation of the signup status filter form.
  • 'signup_admin_form': HTML representation of the main signup administration form.

Return value

string 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/people/signup.

File

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

Code

function theme_signup_admin_page($variables) {
  $output = drupal_render($variables['filter_status_form']);
  $output .= drupal_render($variables['signup_admin_form']);
  return $output;
}