You are here

public function DatabaseBackend::clear in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Flood/DatabaseBackend.php \Drupal\Core\Flood\DatabaseBackend::clear()

Makes the flood control mechanism forget an event for the current visitor.

Parameters

string $name: The name of an event.

string $identifier: (optional) Unique identifier of the current user. Defaults to the current user's IP address).

Overrides FloodInterface::clear

File

core/lib/Drupal/Core/Flood/DatabaseBackend.php, line 66
Contains \Drupal\Core\Flood\DatabaseBackend.

Class

DatabaseBackend
Defines the database flood backend. This is the default Drupal backend.

Namespace

Drupal\Core\Flood

Code

public function clear($name, $identifier = NULL) {
  if (!isset($identifier)) {
    $identifier = $this->requestStack
      ->getCurrentRequest()
      ->getClientIp();
  }
  $this->connection
    ->delete('flood')
    ->condition('event', $name)
    ->condition('identifier', $identifier)
    ->execute();
}