function BanIpManager::banIp
Same name and namespace in other branches
- 9 core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::banIp()
- 8.9.x core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::banIp()
- 11.x core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::banIp()
Bans an IP address.
Parameters
string $ip: The IP address to ban.
Overrides BanIpManagerInterface::banIp
File
-
core/
modules/ ban/ src/ BanIpManager.php, line 46
Class
- BanIpManager
- Ban IP manager.
Namespace
Drupal\banCode
public function banIp($ip) {
$this->connection
->merge('ban_ip')
->key('ip', $ip)
->fields([
'ip' => $ip,
])
->execute();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.