Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
aeb25c39
Commit
aeb25c39
authored
Mar 10, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Further adjustments for Url helper
parent
bd271d42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
32 deletions
+56
-32
BaseUrl.php
framework/helpers/BaseUrl.php
+56
-32
No files found.
framework/helpers/BaseUrl.php
View file @
aeb25c39
...
@@ -23,64 +23,82 @@ class BaseUrl
...
@@ -23,64 +23,82 @@ class BaseUrl
/**
/**
* Returns URL for a route.
* Returns URL for a route.
*
*
* @param array|string $route parametrized route or empty string for current URL:
* @param array|string $route route as a string or route and parameters in form of
* ['route', 'param1' => 'value1', 'param2' => 'value2'].
*
*
* - an empty string: the currently requested URL will be returned;
* In case there is no controller, [[\yii\web\UrlManager::createUrl()]] will be used.
* - an array: the first array element is considered a route, while the rest of the name-value
* pairs are treated as the parameters to be used for URL creation using [[\yii\web\Controller::createUrl()]].
* For example: `['post/index', 'page' => 2]`, `['index']`.
* In case there is no controller, [[\yii\web\UrlManager::createUrl()]] will be used.
*
*
* @param
boolean $absolute if absolute URL should be created
* @param
string $schema URI schema to use. If specified absolute URL with the schema specified is returned.
* @return string the normalized URL
* @return string the normalized URL
* @throws InvalidParamException if the parameter is invalid.
* @throws InvalidParamException if the parameter is invalid.
*/
*/
public
static
function
toRoute
(
$route
,
$
absolute
=
false
)
public
static
function
toRoute
(
$route
,
$
schema
=
null
)
{
{
if
(
$route
===
''
)
{
$route
=
(
array
)
$route
;
return
$absolute
?
Yii
::
$app
->
getRequest
()
->
getAbsoluteUrl
()
:
Yii
::
$app
->
getRequest
()
->
getUrl
();
if
(
!
isset
(
$route
[
0
]))
{
}
throw
new
InvalidParamException
(
'$route should contain at least one element.'
);
if
(
!
is_array
(
$route
)
||
!
isset
(
$route
[
0
]))
{
throw
new
InvalidParamException
(
'$route should be either empty string or array containing at least one element.'
);
}
}
if
(
Yii
::
$app
->
controller
instanceof
\yii\web\Controller
)
{
if
(
Yii
::
$app
->
controller
instanceof
\yii\web\Controller
)
{
return
$
absolute
?
Yii
::
$app
->
controller
->
createAbsoluteUrl
(
$route
)
:
Yii
::
$app
->
controller
->
createUrl
(
$route
);
return
$
schema
===
null
?
Yii
::
$app
->
controller
->
createUrl
(
$route
)
:
Yii
::
$app
->
controller
->
createAbsoluteUrl
(
$route
,
$schema
);
}
else
{
}
else
{
return
$
absolute
?
Yii
::
$app
->
getUrlManager
()
->
createAbsoluteUrl
(
$route
)
:
Yii
::
$app
->
getUrlManager
()
->
createUrl
(
$route
);
return
$
schema
===
null
?
Yii
::
$app
->
getUrlManager
()
->
createUrl
(
$route
)
:
Yii
::
$app
->
getUrlManager
()
->
createAbsoluteUrl
(
$route
,
$schema
);
}
}
}
}
/**
/**
*
Normalizes the input parameter to be a valid URL
.
*
Creates a link specified by the input parameter
.
*
*
* If the input parameter
* If the input parameter
*
*
* - is an empty string: the currently requested URL will be returned;
* - is a non-empty string: it will first be processed by [[Yii::getAlias()]]. If the result
* is an absolute URL, it will be returned without any change further; Otherwise, the result
* will be prefixed with [[\yii\web\Request::baseUrl]] and returned.
* - is an array: the first array element is considered a route, while the rest of the name-value
* - is an array: the first array element is considered a route, while the rest of the name-value
* pairs are treated as the parameters to be used for URL creation using [[\yii\web\Controller::createUrl()]].
* pairs are treated as the parameters to be used for URL creation using [[\yii\web\Controller::createUrl()]].
* For example: `['post/index', 'page' => 2]`, `['index']`.
* For example: `['post/index', 'page' => 2]`, `['index']`.
* In case there is no controller, [[\yii\web\UrlManager::createUrl()]] will be used.
* In case there is no controller, [[\yii\web\UrlManager::createUrl()]] will be used.
* - is an empty string: the currently requested URL will be returned;
* - is a non-empty string: it will first be processed by [[Yii::getAlias()]]. If the result
* is an absolute URL, it will be returned without any change further; Otherwise, the result
* will be prefixed with [[\yii\web\Request::baseUrl]] and returned.
*
*
* @param array|string $url the parameter to be used to generate a valid URL
* @param array|string $url the parameter to be used to generate a valid URL
* @param
boolean $absolute if URL should be absolute
* @param
string $schema URI schema to use. If specified absolute URL with the schema specified is returned.
* @return string the normalized URL
* @return string the normalized URL
* @throws InvalidParamException if the parameter is invalid.
* @throws InvalidParamException if the parameter is invalid.
*/
*/
public
static
function
to
(
$url
=
null
,
$absolute
=
false
)
public
static
function
to
(
$url
=
''
,
$schema
=
null
)
{
{
if
(
is_array
(
$url
)
&&
isset
(
$url
[
0
])
||
$url
===
''
)
{
if
(
is_array
(
$url
))
{
return
static
::
toRoute
(
$url
,
$absolute
);
return
static
::
toRoute
(
$url
,
$schema
);
}
elseif
(
$url
===
''
)
{
if
(
$schema
===
null
)
{
return
Yii
::
$app
->
request
->
getUrl
();
}
else
{
$url
=
Yii
::
$app
->
request
->
getAbsoluteUrl
();
$pos
=
strpos
(
$url
,
'://'
);
return
$schema
.
substr
(
$url
,
$pos
);
}
}
else
{
}
else
{
$url
=
Yii
::
getAlias
(
$url
);
$url
=
Yii
::
getAlias
(
$url
);
if
(
$url
!==
''
&&
(
$url
[
0
]
===
'/'
||
$url
[
0
]
===
'#'
||
strpos
(
$url
,
'://'
)
||
!
strncmp
(
$url
,
'./'
,
2
)))
{
$pos
=
strpos
(
$url
,
'://'
);
return
strpos
(
$url
,
'://'
)
?
$url
:
Yii
::
$app
->
getRequest
()
->
getHostInfo
()
.
$url
;
if
(
$pos
!==
null
)
{
if
(
$schema
!==
null
)
{
$url
=
$schema
.
substr
(
$url
,
$pos
);
}
return
$url
;
}
if
(
$url
!==
''
&&
(
$url
[
0
]
===
'/'
||
$url
[
0
]
===
'#'
||
!
strncmp
(
$url
,
'./'
,
2
)))
{
$url
=
Yii
::
$app
->
getRequest
()
->
getHostInfo
()
.
$url
;
}
else
{
}
else
{
$prefix
=
$absolute
?
Yii
::
$app
->
getRequest
()
->
getHostInfo
()
:
''
;
$url
=
Yii
::
$app
->
getRequest
()
->
getBaseUrl
()
.
'/'
.
$url
;
return
$prefix
.
Yii
::
$app
->
getRequest
()
->
getBaseUrl
()
.
'/'
.
$url
;
}
if
(
$schema
!==
null
)
{
$pos
=
strpos
(
$url
,
'://'
);
if
(
$pos
!==
null
)
{
$url
=
$schema
.
substr
(
$url
,
$pos
);
}
}
}
return
$url
;
}
}
}
}
...
@@ -131,13 +149,18 @@ class BaseUrl
...
@@ -131,13 +149,18 @@ class BaseUrl
/**
/**
* Returns home URL
* Returns home URL
*
*
* @param
boolean $absolute if absolute URL should be returned
* @param
string $schema URI schema to use. If specified absolute URL with the schema specified is returned.
* @return string home URL
* @return string home URL
*/
*/
public
function
home
(
$
absolute
=
false
)
public
function
home
(
$
schema
=
null
)
{
{
$prefix
=
$absolute
?
Yii
::
$app
->
getRequest
()
->
getHostInfo
()
:
''
;
if
(
$schema
===
null
)
{
return
$prefix
.
Yii
::
$app
->
getHomeUrl
();
return
Yii
::
$app
->
getHomeUrl
();
}
else
{
$url
=
Yii
::
$app
->
getRequest
()
->
getHostInfo
()
.
Yii
::
$app
->
getHomeUrl
();
$pos
=
strpos
(
$url
,
'://'
);
return
$schema
.
substr
(
$url
,
$pos
);
}
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment