You are here

function advuser_admin in Advanced User 6.3

Same name and namespace in other branches
  1. 5.2 advuser.module \advuser_admin()
  2. 6.2 advuser.module \advuser_admin()
  3. 7.3 forms/advuser_admin.inc \advuser_admin()

Callback form controller.

This form is cannot be called by drupal_get_form but returns forms that are. Because it is not loaded by drupal_get_form then $form_state isn't passed to it.

1 string reference to 'advuser_admin'
advuser_menu in ./advuser.module
Implementation of hook_menu().

File

forms/advuser_admin.inc, line 20
The form for the admin/user/user/advuser page.

Code

function advuser_admin() {
  $output = drupal_get_form('advuser_filter_ui');
  $output .= drupal_get_form('advuser_admin_account');
  return $output;
}