function theme_r4032login_denied in Redirect 403 to User Login 7
Same name and namespace in other branches
- 5 r4032login.module \theme_r4032login_denied()
- 6 r4032login.module \theme_r4032login_denied()
Display themed Access denied page.
1 theme call to theme_r4032login_denied()
- r4032login_redirect in ./
r4032login.module - MENU_CALLBACK for /r4032login
File
- ./
r4032login.module, line 211 - Redirect denied pages to the user login form.
Code
function theme_r4032login_denied() {
drupal_set_title(t('Access denied'));
return '<p>' . t('You are not authorized to access this page.') . '</p>';
}