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
babee51d
Commit
babee51d
authored
Jan 01, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactored debug module
parent
eaf4d3ca
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
142 additions
and
119 deletions
+142
-119
ConfigPanel.php
extensions/yii/debug/panels/ConfigPanel.php
+2
-21
RequestPanel.php
extensions/yii/debug/panels/RequestPanel.php
+2
-12
detail.php
extensions/yii/debug/views/default/panels/config/detail.php
+30
-7
summary.php
extensions/yii/debug/views/default/panels/config/summary.php
+13
-6
table.php
extensions/yii/debug/views/default/panels/config/table.php
+31
-21
summary.php
extensions/yii/debug/views/default/panels/db/summary.php
+3
-4
summary.php
extensions/yii/debug/views/default/panels/log/summary.php
+4
-5
detail.php
extensions/yii/debug/views/default/panels/profile/detail.php
+1
-1
summary.php
...nsions/yii/debug/views/default/panels/profile/summary.php
+3
-4
detail.php
extensions/yii/debug/views/default/panels/request/detail.php
+15
-12
summary.php
...nsions/yii/debug/views/default/panels/request/summary.php
+8
-5
table.php
extensions/yii/debug/views/default/panels/request/table.php
+30
-21
No files found.
extensions/yii/debug/panels/ConfigPanel.php
View file @
babee51d
...
...
@@ -30,31 +30,12 @@ class ConfigPanel extends Panel
public
function
getSummary
()
{
return
Yii
::
$app
->
view
->
render
(
'panels/config/summary'
,
[
'panel'
=>
$this
,
'data'
=>
$this
->
data
,
]);
return
Yii
::
$app
->
view
->
render
(
'panels/config/summary'
,
[
'panel'
=>
$this
]);
}
public
function
getDetail
()
{
return
Yii
::
$app
->
view
->
render
(
'panels/config/detail'
,
[
'panel'
=>
$this
,
'data'
=>
$this
->
data
,
'app'
=>
[
'Yii Version'
=>
$this
->
data
[
'application'
][
'yii'
],
'Application Name'
=>
$this
->
data
[
'application'
][
'name'
],
'Environment'
=>
$this
->
data
[
'application'
][
'env'
],
'Debug Mode'
=>
$this
->
data
[
'application'
][
'debug'
]
?
'Yes'
:
'No'
,
],
'php'
=>
[
'PHP Version'
=>
$this
->
data
[
'php'
][
'version'
],
'Xdebug'
=>
$this
->
data
[
'php'
][
'xdebug'
]
?
'Enabled'
:
'Disabled'
,
'APC'
=>
$this
->
data
[
'php'
][
'apc'
]
?
'Enabled'
:
'Disabled'
,
'Memcache'
=>
$this
->
data
[
'php'
][
'memcache'
]
?
'Enabled'
:
'Disabled'
,
],
'extensions'
=>
$this
->
getExtensions
(),
]);
return
Yii
::
$app
->
view
->
render
(
'panels/config/detail'
,
[
'panel'
=>
$this
]);
}
public
function
getExtensions
()
...
...
extensions/yii/debug/panels/RequestPanel.php
View file @
babee51d
...
...
@@ -26,22 +26,12 @@ class RequestPanel extends Panel
public
function
getSummary
()
{
return
Yii
::
$app
->
view
->
render
(
'panels/request/summary'
,
[
'panel'
=>
$this
,
'data'
=>
$this
->
data
,
]);
return
Yii
::
$app
->
view
->
render
(
'panels/request/summary'
,
[
'panel'
=>
$this
]);
}
public
function
getDetail
()
{
return
Yii
::
$app
->
view
->
render
(
'panels/request/detail'
,
[
'panel'
=>
$this
,
'data'
=>
[
'Route'
=>
$this
->
data
[
'route'
],
'Action'
=>
$this
->
data
[
'action'
],
'Parameters'
=>
$this
->
data
[
'actionParams'
],
],
]);
return
Yii
::
$app
->
view
->
render
(
'panels/request/detail'
,
[
'panel'
=>
$this
]);
}
public
function
save
()
...
...
extensions/yii/debug/views/default/panels/config/detail.php
View file @
babee51d
<?php
use
yii\helpers\Html
;
<?php
use
yii\helpers\Html
;
/**
* @var yii\debug\panels\ConfigPanel $panel
*/
$extensions
=
$panel
->
getExtensions
();
?>
<h1>
Configuration
</h1>
<?php
echo
$this
->
context
->
renderPartial
(
'panels/config/_data_table'
,[
'caption'
=>
'Application Configuration'
,
'values'
=>
$app
]);
echo
$this
->
render
(
'panels/config/table'
,
[
'caption'
=>
'Application Configuration'
,
'values'
=>
[
'Yii Version'
=>
$panel
->
data
[
'application'
][
'yii'
],
'Application Name'
=>
$panel
->
data
[
'application'
][
'name'
],
'Environment'
=>
$panel
->
data
[
'application'
][
'env'
],
'Debug Mode'
=>
$panel
->
data
[
'application'
][
'debug'
]
?
'Yes'
:
'No'
,
],
]);
if
(
!
empty
(
$extensions
))
{
echo
$this
->
context
->
renderPartial
(
'panels/config/_data_table'
,[
'caption'
=>
'Installed Extensions'
,
'values'
=>
$extensions
]);
echo
$this
->
render
(
'panels/config/table'
,
[
'caption'
=>
'Installed Extensions'
,
'values'
=>
$extensions
,
]);
}
echo
$this
->
context
->
renderPartial
(
'panels/config/_data_table'
,[
'caption'
=>
'PHP Configuration'
,
'values'
=>
$php
]);
echo
$this
->
render
(
'panels/config/table'
,
[
'caption'
=>
'PHP Configuration'
,
'values'
=>
[
'PHP Version'
=>
$panel
->
data
[
'php'
][
'version'
],
'Xdebug'
=>
$panel
->
data
[
'php'
][
'xdebug'
]
?
'Enabled'
:
'Disabled'
,
'APC'
=>
$panel
->
data
[
'php'
][
'apc'
]
?
'Enabled'
:
'Disabled'
,
'Memcache'
=>
$panel
->
data
[
'php'
][
'memcache'
]
?
'Enabled'
:
'Disabled'
,
],
]);
?>
<div>
<?php
echo
Html
::
a
(
'Show phpinfo »'
,
[
'phpinfo'
],
[
'class'
=>
'btn btn-primary'
]);
?>
</div>
\ No newline at end of file
<div>
<?=
Html
::
a
(
'Show phpinfo() »'
,
[
'phpinfo'
],
[
'class'
=>
'btn btn-primary'
])
?>
</div>
extensions/yii/debug/views/default/panels/config/summary.php
View file @
babee51d
<?php
use
yii\helpers\Html
;
/**
* @var yii\debug\panels\ConfigPanel $panel
*/
?>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?
php
echo
$panel
->
getUrl
();
?>
"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?
php
echo
$panel
->
getYiiLogo
();
?>
"
>
<span>
<?
php
echo
$data
[
'application'
][
'yii'
];
?>
</span>
<a
href=
"
<?
=
$panel
->
getUrl
()
?>
"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?
=
$panel
->
getYiiLogo
()
?>
"
>
<span>
<?
=
$panel
->
data
[
'application'
][
'yii'
]
?>
</span>
</a>
</div>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?php
echo
$this
->
context
->
createUrl
(
'phpinfo'
);
?>
"
title=
"Show phpinfo()"
>
PHP
<?php
echo
$data
[
'php'
][
'version'
];
?>
</a>
</div>
\ No newline at end of file
<?=
Html
::
a
(
'PHP '
.
$panel
->
data
[
'php'
][
'version'
],
[
'phpinfo'
],
[
'title'
=>
'Show phpinfo()'
])
?>
</div>
extensions/yii/debug/views/default/panels/config/
_data_
table.php
→
extensions/yii/debug/views/default/panels/config/table.php
View file @
babee51d
<?php
use
yii\helpers\Html
;
if
(
empty
(
$values
))
:
?>
<h3>
<?php
echo
$caption
;
?>
</h3>
<p>
Empty.
</p>
/**
* @var string $caption
* @var array $values
*/
?>
<h3>
<?=
$caption
?>
</h3>
<?php
if
(
empty
(
$values
))
:
?>
<p>
Empty.
</p>
<?php
else
:
?>
<h3>
<?php
echo
$caption
;
?>
</h3>
<table
class=
"table table-condensed table-bordered table-striped table-hover"
style=
"table-layout: fixed;"
>
<thead>
<tr>
<th
style=
"width: 200px;"
>
Name
</th>
<th>
Value
</th>
</tr>
</thead>
<?php
foreach
(
$values
as
$name
=>
$value
)
:
?>
<tr>
<th
style=
"width: 200px;"
>
<?php
echo
Html
::
encode
(
$name
);
?>
</th>
<td
style=
"overflow:auto"
>
<?php
echo
Html
::
encode
(
$value
);
?>
</td>
</tr>
<?php
endforeach
;
?>
</tbody>
</table>
<?php
endif
;
?>
\ No newline at end of file
<table
class=
"table table-condensed table-bordered table-striped table-hover"
style=
"table-layout: fixed;"
>
<thead>
<tr>
<th
style=
"width: 200px;"
>
Name
</th>
<th>
Value
</th>
</tr>
</thead>
<tbody>
<?php
foreach
(
$values
as
$name
=>
$value
)
:
?>
<tr>
<th
style=
"width: 200px;"
>
<?=
Html
::
encode
(
$name
)
?>
</th>
<td
style=
"overflow:auto"
>
<?=
Html
::
encode
(
$value
)
?>
</td>
</tr>
<?php
endforeach
;
?>
</tbody>
</table>
<?php
endif
;
?>
extensions/yii/debug/views/default/panels/db/summary.php
View file @
babee51d
<?php
if
(
$queryCount
)
:
?>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?
php
echo
$panel
->
getUrl
();
?>
"
title=
"Executed
<?php
echo
$queryCount
;
?>
database queries which took
<?php
echo
$queryTime
;
?>
."
>
DB
<span
class=
"label"
>
<?
php
echo
$queryCount
;
?>
</span>
<span
class=
"label"
>
<?php
echo
$queryTime
;
?>
</span>
<a
href=
"
<?
=
$panel
->
getUrl
()
?>
"
title=
"Executed
<?php
echo
$queryCount
;
?>
database queries which took
<?=
$queryTime
?>
."
>
DB
<span
class=
"label"
>
<?
=
$queryCount
?>
</span>
<span
class=
"label"
>
<?=
$queryTime
?>
</span>
</a>
</div>
<?php
endif
;
?>
\ No newline at end of file
<?php
endif
;
?>
extensions/yii/debug/views/default/panels/log/summary.php
View file @
babee51d
...
...
@@ -21,8 +21,8 @@ if ($warningCount) {
?>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?
php
echo
$panel
->
getUrl
();
?>
"
title=
"
<?php
echo
$title
?>
"
>
Log
<span
class=
"label"
>
<?
php
echo
count
(
$data
[
'messages'
]);
?>
</span>
<?
php
echo
implode
(
' '
,
$output
);
?>
<a
href=
"
<?
=
$panel
->
getUrl
()
?>
"
title=
"
<?=
$title
?>
"
>
Log
<span
class=
"label"
>
<?
=
count
(
$data
[
'messages'
])
?>
</span>
<?
=
implode
(
' '
,
$output
)
?>
</a>
</div>
\ No newline at end of file
</div>
extensions/yii/debug/views/default/panels/profile/detail.php
View file @
babee51d
...
...
@@ -3,7 +3,7 @@ use yii\grid\GridView;
use
yii\helpers\Html
;
?>
<h1>
Performance Profiling
</h1>
<p>
Total processing time:
<b>
<?
php
echo
$time
;
?>
</b>
; Peak memory:
<b>
<?php
echo
$memory
;
?>
</b>
.
</p>
<p>
Total processing time:
<b>
<?
=
$time
?>
</b>
; Peak memory:
<b>
<?=
$memory
?>
</b>
.
</p>
<?php
echo
GridView
::
widget
([
'dataProvider'
=>
$dataProvider
,
...
...
extensions/yii/debug/views/default/panels/profile/summary.php
View file @
babee51d
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?
php
echo
$panel
->
getUrl
();
?>
"
title=
"Total request processing time was
<?php
echo
$time
;
?>
"
>
Time
<span
class=
"label"
>
<?php
echo
$time
;
?>
</span></a>
<a
href=
"
<?
=
$panel
->
getUrl
()
?>
"
title=
"Total request processing time was
<?=
$time
?>
"
>
Time
<span
class=
"label"
>
<?=
$time
?>
</span></a>
</div>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?php
echo
$panel
->
getUrl
();
?>
"
title=
"Peak memory consumption"
>
Memory
<span
class=
"label"
>
<?php
echo
$memory
;
?>
</span></a>
</div>
\ No newline at end of file
<a
href=
"
<?=
$panel
->
getUrl
()
?>
"
title=
"Peak memory consumption"
>
Memory
<span
class=
"label"
>
<?=
$memory
?>
</span></a>
</div>
extensions/yii/debug/views/default/panels/request/detail.php
View file @
babee51d
<?php
use
yii\bootstrap\Tabs
;
/**
* @var yii\debug\panels\RequestPanel $panel
*/
echo
Tabs
::
widget
([
'items'
=>
[
[
'label'
=>
'Parameters'
,
'content'
=>
$this
->
context
->
renderPartial
(
'panels/request/_data_table'
,
[
'caption'
=>
'Routing'
,
'values'
=>
$data
])
.
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'$_GET'
,
'values'
=>
$panel
->
data
[
'GET'
]])
.
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'$_POST'
,
'values'
=>
$panel
->
data
[
'POST'
]])
.
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'$_FILES'
,
'values'
=>
$panel
->
data
[
'FILES'
]])
.
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'$_COOKIE'
,
'values'
=>
$panel
->
data
[
'COOKIE'
]]),
'content'
=>
$this
->
render
(
'panels/request/table'
,
[
'caption'
=>
'Routing'
,
'values'
=>
[
'Route'
=>
$panel
->
data
[
'route'
],
'Action'
=>
$panel
->
data
[
'action'
],
'Parameters'
=>
$panel
->
data
[
'actionParams'
]]
])
.
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'$_GET'
,
'values'
=>
$panel
->
data
[
'GET'
]])
.
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'$_POST'
,
'values'
=>
$panel
->
data
[
'POST'
]])
.
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'$_FILES'
,
'values'
=>
$panel
->
data
[
'FILES'
]])
.
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'$_COOKIE'
,
'values'
=>
$panel
->
data
[
'COOKIE'
]]),
'active'
=>
true
,
],
[
'label'
=>
'Headers'
,
'content'
=>
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'Request Headers'
,
'values'
=>
$panel
->
data
[
'requestHeaders'
]])
.
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'Response Headers'
,
'values'
=>
$panel
->
data
[
'responseHeaders'
]])
'content'
=>
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'Request Headers'
,
'values'
=>
$panel
->
data
[
'requestHeaders'
]])
.
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'Response Headers'
,
'values'
=>
$panel
->
data
[
'responseHeaders'
]])
],
[
'label'
=>
'Session'
,
'content'
=>
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'$_SESSION'
,
'values'
=>
$panel
->
data
[
'SESSION'
]])
.
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'Flashes'
,
'values'
=>
$panel
->
data
[
'flashes'
]])
'content'
=>
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'$_SESSION'
,
'values'
=>
$panel
->
data
[
'SESSION'
]])
.
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'Flashes'
,
'values'
=>
$panel
->
data
[
'flashes'
]])
],
[
'label'
=>
'$_SERVER'
,
'content'
=>
$this
->
context
->
renderPartial
(
'panels/request/_data_
table'
,
[
'caption'
=>
'$_SERVER'
,
'values'
=>
$panel
->
data
[
'SERVER'
]]),
'content'
=>
$this
->
render
(
'panels/request/
table'
,
[
'caption'
=>
'$_SERVER'
,
'values'
=>
$panel
->
data
[
'SERVER'
]]),
],
],
]);
?>
\ No newline at end of file
?>
extensions/yii/debug/views/default/panels/request/summary.php
View file @
babee51d
...
...
@@ -2,7 +2,11 @@
use
yii\helpers\Html
;
use
yii\web\Response
;
$statusCode
=
$data
[
'statusCode'
];
/**
* @var yii\debug\panels\RequestPanel $panel
*/
$statusCode
=
$panel
->
data
[
'statusCode'
];
if
(
$statusCode
===
null
)
{
$statusCode
=
200
;
}
...
...
@@ -16,8 +20,8 @@ if ($statusCode >= 200 && $statusCode < 300) {
$statusText
=
Html
::
encode
(
isset
(
Response
::
$httpStatuses
[
$statusCode
])
?
Response
::
$httpStatuses
[
$statusCode
]
:
''
);
?>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?
php
echo
$panel
->
getUrl
();
?>
"
title=
"Status code:
<?php
echo
$statusCode
;
?>
<?php
echo
$statusText
;
?>
"
>
Status
<span
class=
"label
<?php
echo
$class
;
?>
"
>
<?php
echo
$statusCode
;
?>
</span></a>
<a
href=
"
<?
=
$panel
->
getUrl
()
?>
"
title=
"Status code:
<?=
$statusCode
?>
<?=
$statusText
?>
"
>
Status
<span
class=
"label
<?=
$class
?>
"
>
<?=
$statusCode
?>
</span></a>
</div>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?php
echo
$panel
->
getUrl
();
?>
"
>
Action
<span
class=
"label"
>
<?php
echo
$data
[
'action'
];
?>
</span></a>
</div>
\ No newline at end of file
<a
href=
"
<?=
$panel
->
getUrl
()
?>
"
>
Action
<span
class=
"label"
>
<?=
$panel
->
data
[
'action'
]
?>
</span></a>
</div>
extensions/yii/debug/views/default/panels/request/
_data_
table.php
→
extensions/yii/debug/views/default/panels/request/table.php
View file @
babee51d
<?php
use
yii\helpers\Html
;
if
(
empty
(
$values
))
:
?>
<h3>
<?php
echo
$caption
;
?>
</h3>
<p>
Empty.
</p>
/**
* @var string $caption
* @var array $values
*/
?>
<h3>
<?=
$caption
?>
</h3>
<?php
if
(
empty
(
$values
))
:
?>
<p>
Empty.
</p>
<?php
else
:
?>
<h3>
<?php
echo
$caption
;
?>
</h3>
<table
class=
"table table-condensed table-bordered table-striped table-hover"
style=
"table-layout: fixed;"
>
<thead>
<tr>
<th
style=
"width: 200px;"
>
Name
</th>
<th>
Value
</th>
</tr>
</thead>
<?php
foreach
(
$values
as
$name
=>
$value
)
:
?>
<tr>
<th
style=
"width: 200px;"
>
<?php
echo
Html
::
encode
(
$name
);
?>
</th>
<td>
<?php
echo
htmlspecialchars
(
var_export
(
$value
,
true
),
ENT_QUOTES
|
ENT_SUBSTITUTE
,
\Yii
::
$app
->
charset
,
TRUE
);
?>
</td>
</tr>
<?php
endforeach
;
?>
</tbody>
</table>
<?php
endif
;
?>
\ No newline at end of file
<table
class=
"table table-condensed table-bordered table-striped table-hover"
style=
"table-layout: fixed;"
>
<thead>
<tr>
<th
style=
"width: 200px;"
>
Name
</th>
<th>
Value
</th>
</tr>
</thead>
<tbody>
<?php
foreach
(
$values
as
$name
=>
$value
)
:
?>
<tr>
<th
style=
"width: 200px;"
>
<?=
Html
::
encode
(
$name
)
?>
</th>
<td>
<?=
htmlspecialchars
(
var_export
(
$value
,
true
),
ENT_QUOTES
|
ENT_SUBSTITUTE
,
\Yii
::
$app
->
charset
,
true
)
?>
</td>
</tr>
<?php
endforeach
;
?>
</tbody>
</table>
<?php
endif
;
?>
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