Piwik\Tracker\Action::setActionUrl PHP Method

setActionUrl() protected method

protected setActionUrl ( $url )
    protected function setActionUrl($url)
    {
        $this->rawActionUrl = PageUrl::getUrlIfLookValid($url);
        $url = PageUrl::excludeQueryParametersFromUrl($url, $this->request->getIdSite());
        $this->actionUrl = PageUrl::getUrlIfLookValid($url);
        if ($url != $this->rawActionUrl) {
            Common::printDebug(' Before was "' . $this->rawActionUrl . '"');
            Common::printDebug(' After is "' . $url . '"');
        }
    }