Visitor::banned PHP Method

banned() public static method

Checks if the ip of the current visitor is banned
public static banned ( ) : boolean
return boolean
    public static function banned()
    {
        return in_array(static::ip(), static::$banned);
    }