| 7 common.inc | flood_clear_event($name, $identifier = NULL) |
| 8 common.inc | flood_clear_event($name, $identifier = NULL) |
Makes the flood control mechanism forget an event for the current visitor.
Parameters
$name: The name of an event.
$identifier: Optional identifier (defaults to the current user's IP address).
1 call to flood_clear_event()
File
- includes/
common.inc, line 1192 - Common functions that many Drupal modules will need to reference.
Code
function flood_clear_event($name, $identifier = NULL) {
if (!isset($identifier)) {
$identifier = ip_address();
}
db_delete('flood')
->condition('event', $name)
->condition('identifier', $identifier)
->execute();
}
Login or register to post comments
Comments
Also see:
flood_is_allowed()
flood_register_event()