You are here

function theme_r4032login_user_register in Redirect 403 to User Login 6

Same name and namespace in other branches
  1. 5 r4032login.module \theme_r4032login_user_register()
1 theme call to theme_r4032login_user_register()
r4032login_redirect in ./r4032login.module
MENU_CALLBACK for /4032login

File

./r4032login.module, line 172
Redirect denied pages to the user login form.

Code

function theme_r4032login_user_register() {
  drupal_set_title(t('Access denied'));
  $message = variable_get('r4032login_user_register_message', t('You are not authorized to access this page.'));
  return '<p>' . t($message) . '</p>';
}