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
e4f0e800
Commit
e4f0e800
authored
Feb 07, 2014
by
Tobias Munk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactored panels to achieve a consistent look
parent
18a3e9aa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
29 deletions
+35
-29
index.php
extensions/debug/views/default/index.php
+13
-9
summary.php
extensions/debug/views/default/panels/config/summary.php
+4
-8
toolbar.php
extensions/debug/views/default/toolbar.php
+10
-7
view.php
extensions/debug/views/default/view.php
+8
-5
No files found.
extensions/debug/views/default/index.php
View file @
e4f0e800
...
...
@@ -3,6 +3,7 @@
use
yii\helpers\Html
;
use
yii\grid\GridView
;
use
yii\data\ArrayDataProvider
;
use
yii\debug\panels\ConfigPanel
;
/**
* @var \yii\web\View $this
...
...
@@ -14,15 +15,18 @@ use yii\data\ArrayDataProvider;
$this
->
title
=
'Yii Debugger'
;
?>
<div
class=
"default-index"
>
<div
id=
"yii-debug-toolbar"
class=
"yii-debug-toolbar-top"
>
<div
class=
"yii-debug-toolbar-block title"
>
<a
href=
"
<?=
Yii
::
$app
->
homeUrl
?>
"
>
<span
class=
"glyphicon glyphicon-home"
></span>
</a>
</div>
<div
class=
"yii-debug-toolbar-block title"
>
Yii Debugger
</div>
<div
id=
"yii-debug-toolbar"
class=
"yii-debug-toolbar-top"
>
<div
class=
"yii-debug-toolbar-block title"
>
<a
href=
"#"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?=
\yii\debug\Module
::
getYiiLogo
()
?>
"
>
Yii Debugger
</a>
</div>
<?php
foreach
(
$panels
as
$panel
)
:
?>
<?=
$panel
->
getSummary
()
?>
<?php
endforeach
;
?>
</div>
<div
class=
"container"
>
...
...
extensions/debug/views/default/panels/config/summary.php
View file @
e4f0e800
...
...
@@ -6,15 +6,11 @@ use yii\helpers\Html;
* @var yii\debug\panels\ConfigPanel $panel
*/
?>
<div
class=
"yii-debug-toolbar-block title"
>
<?=
Html
::
a
(
'Yii Debugger'
,
[
'index'
],
[
'title'
=>
'Back to main debug page'
])
?>
</div>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?=
$panel
->
getUrl
()
?>
"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?=
$panel
->
getYiiLogo
()
?>
"
>
<span>
<?=
$panel
->
data
[
'application'
][
'yii'
]
?>
</span>
Yii
<span
class=
"label label-info"
>
<?=
$panel
->
data
[
'application'
][
'yii'
]
?>
</span>
PHP
<span
class=
"label label-info"
>
<?=
$panel
->
data
[
'php'
][
'version'
]
?>
</span>
</a>
</div>
<div
class=
"yii-debug-toolbar-block"
>
<?=
Html
::
a
(
'PHP '
.
$panel
->
data
[
'php'
][
'version'
],
[
'phpinfo'
],
[
'title'
=>
'Show phpinfo()'
,
'target'
=>
'phpinfo'
])
?>
</div>
extensions/debug/views/default/toolbar.php
View file @
e4f0e800
...
...
@@ -5,6 +5,7 @@
* @var string $tag
* @var string $position
*/
use
yii\helpers\Html
;
use
yii\debug\panels\ConfigPanel
;
$minJs
=
<<<EOD
...
...
@@ -27,19 +28,21 @@ $firstPanel = reset($panels);
$url
=
$firstPanel
->
getUrl
();
?>
<div
id=
"yii-debug-toolbar"
class=
"yii-debug-toolbar-
<?=
$position
?>
"
>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?=
Yii
::
$app
->
homeUrl
?>
"
>
<span
class=
"glyphicon glyphicon-home"
></span>
</a>
</div>
<div
class=
"yii-debug-toolbar-block title"
>
<a
href=
"
<?=
Html
::
url
([
'index'
])
?>
"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?=
\yii\debug\Module
::
getYiiLogo
()
?>
"
>
Yii Debugger
</a>
</div>
<?php
foreach
(
$panels
as
$panel
)
:
?>
<?=
$panel
->
getSummary
()
?>
<?=
$panel
->
getSummary
()
?>
<?php
endforeach
;
?>
<span
class=
"yii-debug-toolbar-toggler"
onclick=
"
<?=
$minJs
?>
"
>
›
</span>
</div>
<div
id=
"yii-debug-toolbar-min"
>
<a
href=
"
<?=
$url
?>
"
title=
"Open Yii Debugger"
id=
"yii-debug-toolbar-logo"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?=
ConfigPanel
::
getYiiLogo
()
?>
"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?=
\yii\debug\Module
::
getYiiLogo
()
?>
"
>
</a>
<span
class=
"yii-debug-toolbar-toggler"
onclick=
"
<?=
$maxJs
?>
"
>
‹
</span>
</div>
extensions/debug/views/default/view.php
View file @
e4f0e800
...
...
@@ -17,11 +17,14 @@ $this->title = 'Yii Debugger';
?>
<div
class=
"default-view"
>
<div
id=
"yii-debug-toolbar"
class=
"yii-debug-toolbar-top"
>
<div
class=
"yii-debug-toolbar-block"
>
<a
href=
"
<?=
Yii
::
$app
->
homeUrl
?>
"
>
<span
class=
"glyphicon glyphicon-home"
></span>
</a>
</div>
<div
class=
"yii-debug-toolbar-block title"
>
<a
href=
"
<?=
Html
::
url
([
'index'
])
?>
"
>
<img
width=
"29"
height=
"30"
alt=
""
src=
"
<?=
\yii\debug\Module
::
getYiiLogo
()
?>
"
>
Yii Debugger
</a>
</div>
<?php
foreach
(
$panels
as
$panel
)
:
?>
<?=
$panel
->
getSummary
()
?>
<?php
endforeach
;
?>
...
...
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