function BanIpManager::unbanIp

Same name and namespace in other branches
  1. 8.9.x core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::unbanIp()
  2. 10 core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::unbanIp()
  3. 11.x core/modules/ban/src/BanIpManager.php \Drupal\ban\BanIpManager::unbanIp()

Overrides BanIpManagerInterface::unbanIp

File

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

Class

BanIpManager
Ban IP manager.

Namespace

Drupal\ban

Code

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.