public function MemoryBackend::garbageCollection
public MemoryBackend::garbageCollection()
Cleans up expired flood events. This method is called automatically on cron run.
Overrides FloodInterface::garbageCollection
See also
File
- core/lib/Drupal/Core/Flood/MemoryBackend.php, line 74
Class
- MemoryBackend
- Defines the memory flood backend. This is used for testing.
Namespace
Drupal\Core\FloodCode
public function garbageCollection() {
foreach ($this->events as $name => $identifiers) {
foreach ($this->events[$name] as $identifier => $timestamps) {
// Filter by key (expiration) but preserve key => value associations.
$this->events[$name][$identifier] = array_filter($timestamps, function() use (&$timestamps) {
$expiration = key($timestamps);
next($timestamps);
return $expiration > microtime(TRUE);
});
}
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Flood!MemoryBackend.php/function/MemoryBackend::garbageCollection/8.1.x