You are here

public function BanIpManagerInterface::findById in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/ban/src/BanIpManagerInterface.php \Drupal\ban\BanIpManagerInterface::findById()

Finds a banned IP address by its ID.

Parameters

int $ban_id: The ID for a banned IP address.

Return value

string|false Either the banned IP address or FALSE if none exist with that ID.

1 method overrides BanIpManagerInterface::findById()
BanIpManager::findById in core/modules/ban/src/BanIpManager.php
Finds a banned IP address by its ID.

File

core/modules/ban/src/BanIpManagerInterface.php, line 59
Contains \Drupal\ban\BanIpManagerInterface.

Class

BanIpManagerInterface
Provides an interface defining a BanIp manager.

Namespace

Drupal\ban

Code

public function findById($ban_id);