You are here

function theme_advuser_filter_form in Advanced User 6.2

Same name and namespace in other branches
  1. 5.2 advuser_filters.inc \theme_advuser_filter_form()

Theme advuser administration filter form.

File

./advuser_filters.inc, line 214
Advanced user module allows you to select users based on an advanced set of filtering and apply actions to block, unblock, delete or email the selected users.

Code

function theme_advuser_filter_form($form) {
  $output = '<div id="user-admin-filter">';
  $output .= drupal_render($form['filters']);
  $output .= '</div>';
  $output .= drupal_render($form);
  return $output;
}