Piwik\Plugins\SitesManager\API::getExcludedUserAgentsGlobal PHP Method

getExcludedUserAgentsGlobal() public method

Returns the list of user agent substrings to look for when excluding visits for all websites. If a visitor's user agent string contains one of these substrings, their visits will not be included.
public getExcludedUserAgentsGlobal ( ) : string
return string Comma separated list of strings.
    public function getExcludedUserAgentsGlobal()
    {
        Piwik::checkUserHasSomeAdminAccess();
        return Option::get(self::OPTION_EXCLUDED_USER_AGENTS_GLOBAL);
    }