function user_register_access
Same name and namespace in other branches
- 7.x drupal-7.x/modules/user/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().
Archivo
- drupal-6.x/
modules/ user/ user.module, line 887 - Enables the user registration and login system.
Código
function user_register_access() {
return user_is_anonymous() && variable_get('user_register', 1);
}