mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-22 01:30:23 +08:00
15 lines
444 B
PHP
15 lines
444 B
PHP
<?php
|
|
/**
|
|
* @var yii\debug\panels\DbPanel $panel
|
|
* @var integer $queryCount
|
|
* @var integer $queryTime
|
|
*/
|
|
?>
|
|
<?php if ($queryCount): ?>
|
|
<div class="yii-debug-toolbar-block">
|
|
<a href="<?= $panel->getUrl() ?>" title="Executed <?= $queryCount ?> database queries which took <?= $queryTime ?>.">
|
|
DB <span class="label label-info"><?= $queryCount ?></span> <span class="label"><?= $queryTime ?></span>
|
|
</a>
|
|
</div>
|
|
<?php endif; ?>
|