You are here

public function FloodInterface::clear in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Flood/FloodInterface.php \Drupal\Core\Flood\FloodInterface::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).

2 methods override FloodInterface::clear()
DatabaseBackend::clear in core/lib/Drupal/Core/Flood/DatabaseBackend.php
Makes the flood control mechanism forget an event for the current visitor.
MemoryBackend::clear in core/lib/Drupal/Core/Flood/MemoryBackend.php
Makes the flood control mechanism forget an event for the current visitor.

File

core/lib/Drupal/Core/Flood/FloodInterface.php, line 42
Contains \Drupal\Core\Flood\FloodInterface.

Class

FloodInterface
Defines an interface for flood controllers.

Namespace

Drupal\Core\Flood

Code

public function clear($name, $identifier = NULL);