public function MemoryBackend::clear in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Flood/MemoryBackend.php \Drupal\Core\Flood\MemoryBackend::clear()
- 10 core/lib/Drupal/Core/Flood/MemoryBackend.php \Drupal\Core\Flood\MemoryBackend::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/ MemoryBackend.php, line 50
Class
- MemoryBackend
- Defines the memory flood backend. This is used for testing.
Namespace
Drupal\Core\FloodCode
public function clear($name, $identifier = NULL) {
if (!isset($identifier)) {
$identifier = $this->requestStack
->getCurrentRequest()
->getClientIp();
}
unset($this->events[$name][$identifier]);
}