W3cubDocs

/Drupal 8

protected function DatabaseBackend::doInsert

protected DatabaseBackend::doInsert($name, $window, $identifier)

Inserts an event into the flood table

Parameters

string $name: The name of an event.

int $window: Number of seconds before this event expires.

string $identifier: Unique identifier of the current user.

See also

\Drupal\Core\Flood\DatabaseBackend::register

File

core/lib/Drupal/Core/Flood/DatabaseBackend.php, line 81

Class

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

Namespace

Drupal\Core\Flood

Code

protected function doInsert($name, $window, $identifier) {
  $this->connection->insert(static::TABLE_NAME)
    ->fields(array(
      'event' => $name,
      'identifier' => $identifier,
      'timestamp' => REQUEST_TIME,
      'expiration' => REQUEST_TIME + $window,
    ))
    ->execute();
}

© 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!DatabaseBackend.php/function/DatabaseBackend::doInsert/8.1.x