function BanIpManager::banIp
Same name in other branches
- 9 core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::banIp()
- 10 core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::banIp()
- 11.x core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::banIp()
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.