Prado\Web\Services\TPageService::constructUrl PHP Method

constructUrl() public method

Constructs a URL with specified page path and GET parameters.
public constructUrl ( $pagePath, $getParams = null, $encodeAmpersand = true, $encodeGetItems = true ) : string
return string URL for the page and GET parameters
    public function constructUrl($pagePath, $getParams = null, $encodeAmpersand = true, $encodeGetItems = true)
    {
        return $this->getRequest()->constructUrl($this->getID(), $pagePath, $getParams, $encodeAmpersand, $encodeGetItems);
    }