Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. BanIpManager.php

function BanIpManager::banIp

File

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

Class

BanIpManager
Ban IP manager.

Namespace

Drupal\ban

Code

public function banIp($ip) {
    $this->connection
        ->merge('ban_ip')
        ->key('ip', $ip)
        ->fields([
        'ip' => $ip,
    ])
        ->execute();
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal