Piwik\Tracker\VisitExcluded::isNonHumanBot PHP Méthode

isNonHumanBot() protected méthode

As a result, these sophisticated bots exhibit characteristics of browsers (cookies enabled, executing JavaScript, etc).
See also: DeviceDetector\Parser\Bot
protected isNonHumanBot ( ) : boolean
Résultat boolean
    protected function isNonHumanBot()
    {
        $allowBots = $this->request->getParam('bots');
        $deviceDetector = DeviceDetectorFactory::getInstance($this->userAgent);
        return !$allowBots && ($deviceDetector->isBot() || $this->isIpInRange());
    }