function 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.