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

Breadcrumb

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

function DatabaseBackend::clearByPrefix

Overrides PrefixFloodInterface::clearByPrefix

File

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

Class

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

Namespace

Drupal\Core\Flood

Code

public function clearByPrefix(string $name, string $prefix) : void {
    try {
        $this->connection
            ->delete(static::TABLE_NAME)
            ->condition('event', $name)
            ->condition('identifier', $prefix . '-%', 'LIKE')
            ->execute();
    } catch (\Exception $e) {
        $this->catchException($e);
    }
}

API Navigation

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