init
This commit is contained in:
143
vendor/yiisoft/yii2-debug/views/default/index.php
vendored
Normal file
143
vendor/yiisoft/yii2-debug/views/default/index.php
vendored
Normal file
@@ -0,0 +1,143 @@
|
||||
<?php
|
||||
/* @var $this \yii\web\View */
|
||||
/* @var $manifest array */
|
||||
/* @var $searchModel \yii\debug\models\search\Debug */
|
||||
/* @var $dataProvider ArrayDataProvider */
|
||||
/* @var $panels \yii\debug\Panel[] */
|
||||
|
||||
use yii\data\ArrayDataProvider;
|
||||
use yii\grid\GridView;
|
||||
use yii\helpers\Html;
|
||||
|
||||
$this->title = 'Yii Debugger';
|
||||
?>
|
||||
<div class="default-index">
|
||||
<div id="yii-debug-toolbar" class="yii-debug-toolbar yii-debug-toolbar_position_top" style="display: none;">
|
||||
<div class="yii-debug-toolbar__bar">
|
||||
<div class="yii-debug-toolbar__block yii-debug-toolbar__title">
|
||||
<a href="#">
|
||||
<img width="30" height="30" alt="" src="<?= \yii\debug\Module::getYiiLogo() ?>">
|
||||
</a>
|
||||
</div>
|
||||
<?php foreach ($panels as $panel): ?>
|
||||
<?= $panel->getSummary() ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<?php
|
||||
|
||||
echo ' <h1>Available Debug Data</h1>';
|
||||
|
||||
$codes = [];
|
||||
foreach ($manifest as $tag => $vals) {
|
||||
if (!empty($vals['statusCode'])) {
|
||||
$codes[] = $vals['statusCode'];
|
||||
}
|
||||
}
|
||||
$codes = array_unique($codes, SORT_NUMERIC);
|
||||
$statusCodes = !empty($codes) ? array_combine($codes, $codes) : null;
|
||||
|
||||
$hasDbPanel = isset($panels['db']);
|
||||
|
||||
echo GridView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'filterModel' => $searchModel,
|
||||
'rowOptions' => function ($model) use ($searchModel, $hasDbPanel) {
|
||||
if ($searchModel->isCodeCritical($model['statusCode'])) {
|
||||
return ['class'=>'danger'];
|
||||
}
|
||||
|
||||
if ($hasDbPanel && $this->context->module->panels['db']->isQueryCountCritical($model['sqlCount'])) {
|
||||
return ['class'=>'danger'];
|
||||
}
|
||||
|
||||
return [];
|
||||
},
|
||||
'columns' => array_filter([
|
||||
['class' => 'yii\grid\SerialColumn'],
|
||||
[
|
||||
'attribute' => 'tag',
|
||||
'value' => function ($data) {
|
||||
return Html::a($data['tag'], ['view', 'tag' => $data['tag']]);
|
||||
},
|
||||
'format' => 'html',
|
||||
],
|
||||
[
|
||||
'attribute' => 'time',
|
||||
'value' => function ($data) {
|
||||
return '<span class="nowrap">' . Yii::$app->formatter->asDatetime($data['time'], 'yyyy-MM-dd HH:mm:ss') . '</span>';
|
||||
},
|
||||
'format' => 'html',
|
||||
],
|
||||
'ip',
|
||||
$hasDbPanel ? [
|
||||
'attribute' => 'sqlCount',
|
||||
'label' => 'Query Count',
|
||||
'value' => function ($data) {
|
||||
$dbPanel = $this->context->module->panels['db'];
|
||||
|
||||
if ($dbPanel->isQueryCountCritical($data['sqlCount'])) {
|
||||
$content = Html::tag('b', $data['sqlCount']) . ' ' . Html::tag('span', '', ['class' => 'glyphicon glyphicon-exclamation-sign']);
|
||||
|
||||
return Html::a($content, ['view', 'panel' => 'db', 'tag' => $data['tag']], [
|
||||
'title' => 'Too many queries. Allowed count is ' . $dbPanel->criticalQueryThreshold,
|
||||
]);
|
||||
|
||||
}
|
||||
return $data['sqlCount'];
|
||||
},
|
||||
'format' => 'html',
|
||||
] : null,
|
||||
[
|
||||
'attribute' => 'mailCount',
|
||||
'visible' => isset($this->context->module->panels['mail']),
|
||||
],
|
||||
[
|
||||
'attribute' => 'method',
|
||||
'filter' => ['get' => 'GET', 'post' => 'POST', 'delete' => 'DELETE', 'put' => 'PUT', 'head' => 'HEAD']
|
||||
],
|
||||
[
|
||||
'attribute'=>'ajax',
|
||||
'value' => function ($data) {
|
||||
return $data['ajax'] ? 'Yes' : 'No';
|
||||
},
|
||||
'filter' => ['No', 'Yes'],
|
||||
],
|
||||
[
|
||||
'attribute' => 'url',
|
||||
'label' => 'URL',
|
||||
],
|
||||
[
|
||||
'attribute' => 'statusCode',
|
||||
'value' => function ($data) {
|
||||
$statusCode = $data['statusCode'];
|
||||
if ($statusCode === null) {
|
||||
$statusCode = 200;
|
||||
}
|
||||
if ($statusCode >= 200 && $statusCode < 300) {
|
||||
$class = 'label-success';
|
||||
} elseif ($statusCode >= 300 && $statusCode < 400) {
|
||||
$class = 'label-info';
|
||||
} else {
|
||||
$class = 'label-danger';
|
||||
}
|
||||
return "<span class=\"label {$class}\">$statusCode</span>";
|
||||
},
|
||||
'format' => 'raw',
|
||||
'filter' => $statusCodes,
|
||||
'label' => 'Status code'
|
||||
],
|
||||
]),
|
||||
]);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
if (!window.frameElement) {
|
||||
document.querySelector('#yii-debug-toolbar').style.display = 'block';
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user