function user_auth_help_links in Drupal 5
Same name and namespace in other branches
- 4 modules/user.module \user_auth_help_links()
3 calls to user_auth_help_links()
- user_help in modules/
user/ user.module - Implementation of hook_help().
- user_login in modules/
user/ user.module - user_register in modules/
user/ user.module
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;
}