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

Breadcrumb

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

function BanIpManager::isBanned

File

core/modules/ban/src/BanIpManager.php, line 32

Class

BanIpManager
Ban IP manager.

Namespace

Drupal\ban

Code

public function isBanned($ip) {
    return (bool) $this->connection
        ->query("SELECT * FROM {ban_ip} WHERE [ip] = :ip", [
        ':ip' => $ip,
    ])
        ->fetchField();
}

API Navigation

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