Same name and namespace in other branches
  1. 5.x modules/user/user.module \user_forms()

Implementation of hook_forms().

File

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

Code

function user_forms() {
  $forms['user_admin_access_add_form']['callback'] = 'user_admin_access_form';
  $forms['user_admin_access_edit_form']['callback'] = 'user_admin_access_form';
  $forms['user_admin_new_role']['callback'] = 'user_admin_role';
  return $forms;
}