Contao\FrontendTemplate::addToUrl PHP Method

addToUrl() public static method

Point to Frontend::addToUrl() in front end templates (see #6736)
public static addToUrl ( string $strRequest, boolean $blnIgnoreParams = false, array $arrUnset = [] ) : string
$strRequest string The request string to be added
$blnIgnoreParams boolean If true, the $_GET parameters will be ignored
$arrUnset array An optional array of keys to unset
return string The new URI string
    public static function addToUrl($strRequest, $blnIgnoreParams = false, $arrUnset = array())
    {
        return \Frontend::addToUrl($strRequest, $blnIgnoreParams, $arrUnset);
    }