function user_register_access

Determines if the current user has access to the user registration page.

Return value

bool TRUE if the user is not already logged in and can register for an account.

File

drupal/core/modules/user/user.module, line 846
Enables the user registration and login system.

Code

function user_register_access() {
  return user_is_anonymous() && config('user.settings')
    ->get('register') != USER_REGISTER_ADMINISTRATORS_ONLY;
}