function user_register_access

7.x user.module user_register_access()
6.x user.module user_register_access()
1 string reference to 'user_register_access'
user_menu in drupal-6.x/modules/user/user.module
Implementation of hook_menu().

File

drupal-6.x/modules/user/user.module, line 887
Enables the user registration and login system.

Code

function user_register_access() {
  return user_is_anonymous() && variable_get('user_register', 1);
}