| Versionen | |
|---|---|
| drupal6 | user_block_ip_action() |
Implementation of a Drupal action. Adds an access rule that blocks the user's IP address.
modules/
<?php
function user_block_ip_action() {
$ip = ip_address();
db_query("INSERT INTO {access} (mask, type, status) VALUES ('%s', '%s', %d)", $ip, 'host', 0);
watchdog('action', 'Banned IP address %ip', array('%ip' => $ip));
}
?>
Kommentare
Kommentar hinzufügen