function BanIpManager::unbanIp
Same name in other branches
- 9 core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::unbanIp()
- 8.9.x core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::unbanIp()
- 11.x core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::unbanIp()
File
-
core/
modules/ ban/ src/ BanIpManager.php, line 56
Class
- BanIpManager
- Ban IP manager.
Namespace
Drupal\banCode
public function unbanIp($id) {
$this->connection
->delete('ban_ip')
->condition('ip', $id)
->execute();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.