function flood_clear_event
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()
- user_login_final_validate in drupal-7.x/
modules/ user/ user.module - The final validation handler on the login form.
Archivo
- drupal-7.x/
includes/ common.inc, line 1267 - Common functions that many Drupal modules will need to reference.
Código
function flood_clear_event($name, $identifier = NULL) {
if (!isset($identifier)) {
$identifier = ip_address();
}
db_delete('flood')->condition('event', $name)->condition('identifier', $identifier)->execute();
}