function BanIpManager::unbanIp
Unbans an IP address.
Parameters
string $id: The IP address to unban.
Overrides BanIpManagerInterface::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.