| 7 bootstrap.inc | drupal_block_denied($ip) |
| 8 bootstrap.inc | drupal_block_denied($ip) |
Handles denied users.
Parameters
$ip: IP address to check. Prints a message and exits if access is denied.
1 call to drupal_block_denied()
File
- includes/
bootstrap.inc, line 1906 - Functions that need to be loaded on every Drupal request.
Code
function drupal_block_denied($ip) {
// Deny access to blocked IP addresses - t() is not yet available.
if (drupal_is_denied($ip)) {
header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
print 'Sorry, ' . check_plain(ip_address()) . ' has been banned.';
exit();
}
}
Login or register to post comments