Piwik\Plugins\Actions\Actions\ActionSiteSearch::isSearchDetected PHP Метод

isSearchDetected() защищенный Метод

protected isSearchDetected ( )
    protected function isSearchDetected()
    {
        $siteSearch = $this->detectSiteSearch($this->originalUrl);
        if (empty($siteSearch)) {
            return false;
        }
        list($actionName, $url, $category, $count) = $siteSearch;
        if (!empty($category)) {
            $this->searchCategory = trim($category);
        }
        if ($count !== false) {
            $this->searchCount = $count;
        }
        $this->setActionName($actionName);
        $this->setActionUrl($url);
        return true;
    }