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
0d669f5e
Commit
0d669f5e
authored
Jan 21, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactored params methods in Request
issue #2043
parent
65179b10
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
91 additions
and
116 deletions
+91
-116
DbPanel.php
extensions/debug/panels/DbPanel.php
+1
-1
LogPanel.php
extensions/debug/panels/LogPanel.php
+1
-1
ProfilingPanel.php
extensions/debug/panels/ProfilingPanel.php
+1
-1
CHANGELOG.md
framework/CHANGELOG.md
+3
-1
Pagination.php
framework/data/Pagination.php
+2
-2
Sort.php
framework/data/Sort.php
+2
-2
BaseHtml.php
framework/helpers/BaseHtml.php
+1
-1
Request.php
framework/web/Request.php
+79
-106
UrlManager.php
framework/web/UrlManager.php
+1
-1
No files found.
extensions/debug/panels/DbPanel.php
View file @
0d669f5e
...
...
@@ -53,7 +53,7 @@ class DbPanel extends Panel
public
function
getDetail
()
{
$searchModel
=
new
Db
();
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
(),
$this
->
getModels
());
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
QueryParams
(),
$this
->
getModels
());
return
Yii
::
$app
->
view
->
render
(
'panels/db/detail'
,
[
'panel'
=>
$this
,
...
...
extensions/debug/panels/LogPanel.php
View file @
0d669f5e
...
...
@@ -39,7 +39,7 @@ class LogPanel extends Panel
public
function
getDetail
()
{
$searchModel
=
new
Log
();
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
(),
$this
->
getModels
());
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
QueryParams
(),
$this
->
getModels
());
return
Yii
::
$app
->
view
->
render
(
'panels/log/detail'
,
[
'dataProvider'
=>
$dataProvider
,
...
...
extensions/debug/panels/ProfilingPanel.php
View file @
0d669f5e
...
...
@@ -42,7 +42,7 @@ class ProfilingPanel extends Panel
public
function
getDetail
()
{
$searchModel
=
new
Profile
();
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
(),
$this
->
getModels
());
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
QueryParams
(),
$this
->
getModels
());
return
Yii
::
$app
->
view
->
render
(
'panels/profile/detail'
,
[
'panel'
=>
$this
,
...
...
framework/CHANGELOG.md
View file @
0d669f5e
...
...
@@ -96,6 +96,9 @@ Yii Framework 2 Change Log
-
Chg #1821: Changed default values for yii
\d
b
\C
onnection username and password to null (cebe)
-
Chg #1844:
`Response::sendFile()`
and other file sending methods will not send the response (qiangxue)
-
Chg #1852: DbConnection::tablePrefix default value now 'tbl_' (creocoder)
-
Chg #2043: Renamed
`yii\web\Request::acceptedLanguages`
to
`acceptableLanguages`
(qiangxue)
-
Chg #2043: Removed
`yii\web\Request::getPut()`
,
`getDelete()`
,
`getPatch()`
in favor of
`getBodyParam()`
(cebe)
-
Chg #2043: Renamed
`yii\web\Request::get()`
to
`getQueryParams()`
and
`getRestParams()`
to
`getBodyParams()`
(cebe)
-
Chg #2057: AutoTimestamp attributes defaults changed from
`create_time`
and
`update_time`
to
`created_at`
and
`updated_at`
(creocoder)
-
Chg #2063: Removed
`yii\web\Request::acceptTypes`
and renamed
`yii\web\Request::acceptedContentTypes`
to
`acceptableContentTypes`
(qiangxue)
-
Chg: Renamed
`yii\jui\Widget::clientEventsMap`
to
`clientEventMap`
(qiangxue)
...
...
@@ -108,7 +111,6 @@ Yii Framework 2 Change Log
-
Chg: Changed the directory structure according to PSR-4. You have to update your application
`index.php`
,
`index-test.php`
and
`yii`
files to point to the new location of
`Yii.php`
(qiangxue, cebe)
-
Chg: Advanced app template: moved database connection DSN, login and password to
`-local`
config not to expose it to VCS (samdark)
-
Chg: Renamed
`yii\web\Request::acceptedLanguages`
to
`acceptableLanguages`
(qiangxue)
-
New #66:
[
Auth client library
](
https://github.com/yiisoft/yii2-authclient
)
OpenId, OAuth1, OAuth2 clients (klimov-paul)
-
New #1393:
[
Codeception testing framework integration
](
https://github.com/yiisoft/yii2-codeception
)
(
Ragazzo
)
-
New #1438:
[
MongoDB integration
](
https://github.com/yiisoft/yii2-mongodb
)
ActiveRecord and Query (klimov-paul)
...
...
framework/data/Pagination.php
View file @
0d669f5e
...
...
@@ -141,7 +141,7 @@ class Pagination extends Object
if
(
$this
->
_page
===
null
||
$recalculate
)
{
if
((
$params
=
$this
->
params
)
===
null
)
{
$request
=
Yii
::
$app
->
getRequest
();
$params
=
$request
instanceof
Request
?
$request
->
get
()
:
[];
$params
=
$request
instanceof
Request
?
$request
->
get
QueryParams
()
:
[];
}
if
(
isset
(
$params
[
$this
->
pageVar
])
&&
is_scalar
(
$params
[
$this
->
pageVar
]))
{
$this
->
_page
=
(
int
)
$params
[
$this
->
pageVar
]
-
1
;
...
...
@@ -183,7 +183,7 @@ class Pagination extends Object
{
if
((
$params
=
$this
->
params
)
===
null
)
{
$request
=
Yii
::
$app
->
getRequest
();
$params
=
$request
instanceof
Request
?
$request
->
get
()
:
[];
$params
=
$request
instanceof
Request
?
$request
->
get
QueryParams
()
:
[];
}
if
(
$page
>
0
||
$page
>=
0
&&
$this
->
forcePageVar
)
{
$params
[
$this
->
pageVar
]
=
$page
+
1
;
...
...
framework/data/Sort.php
View file @
0d669f5e
...
...
@@ -245,7 +245,7 @@ class Sort extends Object
$this
->
_attributeOrders
=
[];
if
((
$params
=
$this
->
params
)
===
null
)
{
$request
=
Yii
::
$app
->
getRequest
();
$params
=
$request
instanceof
Request
?
$request
->
get
()
:
[];
$params
=
$request
instanceof
Request
?
$request
->
get
QueryParams
()
:
[];
}
if
(
isset
(
$params
[
$this
->
sortVar
])
&&
is_scalar
(
$params
[
$this
->
sortVar
]))
{
$attributes
=
explode
(
$this
->
separators
[
0
],
$params
[
$this
->
sortVar
]);
...
...
@@ -341,7 +341,7 @@ class Sort extends Object
{
if
((
$params
=
$this
->
params
)
===
null
)
{
$request
=
Yii
::
$app
->
getRequest
();
$params
=
$request
instanceof
Request
?
$request
->
get
()
:
[];
$params
=
$request
instanceof
Request
?
$request
->
get
QueryParams
()
:
[];
}
$params
[
$this
->
sortVar
]
=
$this
->
createSortVar
(
$attribute
);
$route
=
$this
->
route
===
null
?
Yii
::
$app
->
controller
->
getRoute
()
:
$this
->
route
;
...
...
framework/helpers/BaseHtml.php
View file @
0d669f5e
...
...
@@ -237,7 +237,7 @@ class BaseHtml
if
(
$request
instanceof
Request
)
{
if
(
strcasecmp
(
$method
,
'get'
)
&&
strcasecmp
(
$method
,
'post'
))
{
// simulate PUT, DELETE, etc. via POST
$hiddenInputs
[]
=
static
::
hiddenInput
(
$request
->
rest
Var
,
$method
);
$hiddenInputs
[]
=
static
::
hiddenInput
(
$request
->
method
Var
,
$method
);
$method
=
'post'
;
}
if
(
$request
->
enableCsrfValidation
&&
!
strcasecmp
(
$method
,
'post'
))
{
...
...
framework/web/Request.php
View file @
0d669f5e
This diff is collapsed.
Click to expand it.
framework/web/UrlManager.php
View file @
0d669f5e
...
...
@@ -217,7 +217,7 @@ class UrlManager extends Component
return
[
$pathInfo
,
[]];
}
else
{
Yii
::
trace
(
'Pretty URL not enabled. Using default URL parsing logic.'
,
__METHOD__
);
$route
=
$request
->
get
(
$this
->
routeVar
);
$route
=
$request
->
get
QueryParam
(
$this
->
routeVar
,
''
);
if
(
is_array
(
$route
))
{
$route
=
''
;
}
...
...
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