BanIpManager::isBanned

public BanIpManager::isBanned($ip)

Returns if this IP address is banned.

Parameters

string $ip: The IP address to check.

Return value

bool TRUE if the IP address is banned, FALSE otherwise.

Overrides BanIpManagerInterface::isBanned

File

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

Class

BanIpManager
Ban IP manager.

Namespace

Drupal\ban

Code

1
2
3
public function isBanned($ip) {
  return (bool) $this->connection->query("SELECT * FROM {ban_ip} WHERE ip = :ip", array(':ip' => $ip))->fetchField();
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.