Prado\Web\TUrlMappingPattern::setUrlFormat PHP Метод

setUrlFormat() публичный Метод

A Get URL format is like index.php?name1=value1&name2=value2 while a Path URL format is like index.php/name1/value1/name2/value. The separating character between name and value can be configured with {@link setUrlParamSeparator} and defaults to '/'. Changing the UrlFormat will affect {@link constructUrl} and how GET variables are parsed.
С версии: 3.1.4
public setUrlFormat ( $value )
    public function setUrlFormat($value)
    {
        $this->_urlFormat = TPropertyValue::ensureEnum($value, 'Prado\\Web\\THttpRequestUrlFormat');
    }