You are here

function user_auth_help_links in Drupal 4

Same name and namespace in other branches
  1. 5 modules/user/user.module \user_auth_help_links()
3 calls to user_auth_help_links()
user_help in modules/user.module
Implementation of hook_help().
user_login in modules/user.module
user_register in modules/user.module

File

modules/user.module, line 875
Enables the user registration and login system.

Code

function user_auth_help_links() {
  $links = array();
  foreach (module_list() as $module) {
    if (module_hook($module, 'auth')) {
      $links[] = l(module_invoke($module, 'info', 'name'), "user/help#{$module}");
    }
  }
  return $links;
}