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
9a416f3c
Commit
9a416f3c
authored
11 years ago
by
Mark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CS fixes
parent
24ff3d3d
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
21 additions
and
30 deletions
+21
-30
Db.php
extensions/yii/debug/models/search/Db.php
+1
-1
Log.php
extensions/yii/debug/models/search/Log.php
+1
-1
Profile.php
extensions/yii/debug/models/search/Profile.php
+1
-1
DbPanel.php
extensions/yii/debug/panels/DbPanel.php
+2
-2
LogPanel.php
extensions/yii/debug/panels/LogPanel.php
+2
-2
ProfilingPanel.php
extensions/yii/debug/panels/ProfilingPanel.php
+3
-3
detail.php
extensions/yii/debug/views/default/panels/db/detail.php
+4
-7
detail.php
extensions/yii/debug/views/default/panels/log/detail.php
+5
-9
detail.php
extensions/yii/debug/views/default/panels/profile/detail.php
+2
-4
No files found.
extensions/yii/debug/models/search/Db.php
View file @
9a416f3c
...
...
@@ -53,7 +53,7 @@ class Db extends Base
'pageSize'
=>
10
,
],
'sort'
=>
[
'attributes'
=>
[
'duration'
,
'type'
,
'query'
],
'attributes'
=>
[
'duration'
,
'type'
,
'query'
],
'defaultOrder'
=>
[
'duration'
=>
SORT_DESC
,
],
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/models/search/Log.php
View file @
9a416f3c
...
...
@@ -59,7 +59,7 @@ class Log extends Base
'pageSize'
=>
10
,
],
'sort'
=>
[
'attributes'
=>
[
'time'
,
'level'
,
'category'
,
'message'
],
'attributes'
=>
[
'time'
,
'level'
,
'category'
,
'message'
],
],
]);
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/models/search/Profile.php
View file @
9a416f3c
...
...
@@ -53,7 +53,7 @@ class Profile extends Base
'pageSize'
=>
10
,
],
'sort'
=>
[
'attributes'
=>
[
'category'
,
'info'
,
'duration'
],
'attributes'
=>
[
'category'
,
'info'
,
'duration'
],
'defaultOrder'
=>
[
'duration'
=>
SORT_DESC
,
],
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/panels/DbPanel.php
View file @
9a416f3c
...
...
@@ -53,9 +53,9 @@ class DbPanel extends Panel
public
function
getDetail
()
{
$searchModel
=
new
Db
();
$dataProvider
=
$searchModel
->
search
(
$_GET
,
$this
->
getModels
());
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
()
,
$this
->
getModels
());
return
Yii
::
$app
->
view
->
render
(
'panels/db/detail'
,[
return
Yii
::
$app
->
view
->
render
(
'panels/db/detail'
,
[
'panel'
=>
$this
,
'dataProvider'
=>
$dataProvider
,
'searchModel'
=>
$searchModel
,
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/panels/LogPanel.php
View file @
9a416f3c
...
...
@@ -33,13 +33,13 @@ class LogPanel extends Panel
public
function
getSummary
()
{
return
Yii
::
$app
->
view
->
render
(
'panels/log/summary'
,[
'data'
=>
$this
->
data
,
'panel'
=>
$this
]);
return
Yii
::
$app
->
view
->
render
(
'panels/log/summary'
,
[
'data'
=>
$this
->
data
,
'panel'
=>
$this
]);
}
public
function
getDetail
()
{
$searchModel
=
new
Log
();
$dataProvider
=
$searchModel
->
search
(
$_GET
,
$this
->
getModels
());
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
()
,
$this
->
getModels
());
return
Yii
::
$app
->
view
->
render
(
'panels/log/detail'
,[
'dataProvider'
=>
$dataProvider
,
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/panels/ProfilingPanel.php
View file @
9a416f3c
...
...
@@ -38,7 +38,7 @@ class ProfilingPanel extends Panel
public
function
getSummary
()
{
return
Yii
::
$app
->
view
->
render
(
'panels/profile/summary'
,[
return
Yii
::
$app
->
view
->
render
(
'panels/profile/summary'
,
[
'memory'
=>
sprintf
(
'%.1f MB'
,
$this
->
data
[
'memory'
]
/
1048576
),
'time'
=>
number_format
(
$this
->
data
[
'time'
]
*
1000
)
.
' ms'
,
'panel'
=>
$this
...
...
@@ -48,9 +48,9 @@ class ProfilingPanel extends Panel
public
function
getDetail
()
{
$searchModel
=
new
Profile
();
$dataProvider
=
$searchModel
->
search
(
$_GET
,
$this
->
getModels
());
$dataProvider
=
$searchModel
->
search
(
Yii
::
$app
->
request
->
get
()
,
$this
->
getModels
());
return
Yii
::
$app
->
view
->
render
(
'panels/profile/detail'
,[
return
Yii
::
$app
->
view
->
render
(
'panels/profile/detail'
,
[
'panel'
=>
$this
,
'dataProvider'
=>
$dataProvider
,
'searchModel'
=>
$searchModel
,
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/views/default/panels/db/detail.php
View file @
9a416f3c
...
...
@@ -15,29 +15,26 @@ echo GridView::widget([
[
'class'
=>
'yii\grid\SerialColumn'
],
[
'attribute'
=>
'duration'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
return
sprintf
(
'%.1f ms'
,
$data
[
'duration'
]);
},
],
[
'attribute'
=>
'type'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
return
Html
::
encode
(
mb_strtoupper
(
$data
[
'type'
],
'utf8'
));
},
],
[
'attribute'
=>
'query'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
$query
=
Html
::
encode
(
$data
[
'query'
]);
if
(
!
empty
(
$data
[
'trace'
]))
{
$query
.=
Html
::
ul
(
$data
[
'trace'
],
[
'class'
=>
'trace'
,
'item'
=>
function
(
$trace
)
{
return
"<li>
{
$trace
[
'file'
]
}
(
{
$trace
[
'line'
]
}
)</li>"
;
return
"<li>
{
$trace
[
'file'
]
}
(
{
$trace
[
'line'
]
}
)</li>"
;
},
]);
}
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/views/default/panels/log/detail.php
View file @
9a416f3c
...
...
@@ -12,7 +12,7 @@ echo GridView::widget([
'id'
=>
'log-panel-detailed-grid'
,
'filterModel'
=>
$searchModel
,
'filterUrl'
=>
$panel
->
getUrl
(),
'rowOptions'
=>
function
(
$model
,
$key
,
$index
,
$grid
){
'rowOptions'
=>
function
(
$model
,
$key
,
$index
,
$grid
)
{
switch
(
$model
[
'level'
])
{
case
Logger
::
LEVEL_ERROR
:
return
[
'class'
=>
'danger'
];
case
Logger
::
LEVEL_WARNING
:
return
[
'class'
=>
'warning'
];
...
...
@@ -24,8 +24,7 @@ echo GridView::widget([
[
'class'
=>
'yii\grid\SerialColumn'
],
[
'attribute'
=>
'time'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
$timeInSeconds
=
$data
[
'time'
]
/
1000
;
$millisecondsDiff
=
(
int
)((
$timeInSeconds
-
(
int
)
$timeInSeconds
)
*
1000
);
return
date
(
'H:i:s.'
,
$timeInSeconds
)
.
sprintf
(
'%03d'
,
$millisecondsDiff
);
...
...
@@ -33,8 +32,7 @@ echo GridView::widget([
],
[
'attribute'
=>
'level'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
return
Logger
::
getLevelName
(
$data
[
'level'
]);
},
'filter'
=>
[
...
...
@@ -47,15 +45,13 @@ echo GridView::widget([
'category'
,
[
'attribute'
=>
'message'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
$message
=
nl2br
(
Html
::
encode
(
$data
[
'message'
]));
if
(
!
empty
(
$data
[
'trace'
]))
{
$message
.=
Html
::
ul
(
$data
[
'trace'
],
[
'class'
=>
'trace'
,
'item'
=>
function
(
$trace
)
{
'item'
=>
function
(
$trace
)
{
return
"<li>
{
$trace
[
'file'
]
}
(
{
$trace
[
'line'
]
}
)</li>"
;
}
]);
...
...
This diff is collapsed.
Click to expand it.
extensions/yii/debug/views/default/panels/profile/detail.php
View file @
9a416f3c
...
...
@@ -13,16 +13,14 @@ echo GridView::widget([
[
'class'
=>
'yii\grid\SerialColumn'
],
[
'attribute'
=>
'duration'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
return
sprintf
(
'%.1f ms'
,
$data
[
'duration'
]);
},
],
'category'
,
[
'attribute'
=>
'info'
,
'value'
=>
function
(
$data
)
{
'value'
=>
function
(
$data
)
{
return
str_repeat
(
'<span class="indent">→</span>'
,
$data
[
'level'
])
.
$data
[
'info'
];
},
'options'
=>
[
...
...
This diff is collapsed.
Click to expand it.
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