You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @var \yii\base\View $this
|
|
|
|
* @var \yii\debug\Panel[] $panels
|
|
|
|
* @var string $tag
|
|
|
|
*/
|
|
|
|
use yii\helpers\Html;
|
|
|
|
?>
|
|
|
|
<style>
|
|
|
|
#yii-debug-toolbar {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: #eee;
|
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px 10px;
|
|
|
|
z-index: 1000000;
|
|
|
|
font: 11px Verdana, Arial, sans-serif;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.yii-debug-toolbar-block {
|
|
|
|
float: left;
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<div id="yii-debug-toolbar">
|
|
|
|
<div class="yii-debug-toolbar-block">
|
|
|
|
<?php echo Html::a('Yii Debugger', array('index', 'tag' => $tag)); ?>
|
|
|
|
</div>
|
|
|
|
<?php foreach ($panels as $panel): ?>
|
|
|
|
<?php echo $panel->getSummary(); ?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|