user_auth_help_links

5 user.module user_auth_help_links()

3 calls to user_auth_help_links()

File

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

Code

function user_auth_help_links() {
  $links = array();
  foreach (module_implements('auth') as $module) {
    $links[] = l(module_invoke($module, 'info', 'name'), 'user/help', array(), NULL, $module);
  }
  return $links;
}
Login or register to post comments