Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DatabaseBackend.php

function DatabaseBackend::doInsert

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

1 call to DatabaseBackend::doInsert()
DatabaseBackend::register in core/lib/Drupal/Core/Flood/DatabaseBackend.php
Registers an event for the current visitor to the flood control mechanism.

File

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

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([
        'event' => $name,
        'identifier' => $identifier,
        'timestamp' => $this->time
            ->getRequestTime(),
        'expiration' => $this->time
            ->getRequestTime() + $window,
    ])
        ->execute();
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal