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.

13 lines
532B

  1. <?php
  2. /* @var $panel yii\debug\panels\DbPanel */
  3. /* @var $queryCount integer */
  4. /* @var $queryTime integer */
  5. ?>
  6. <?php if ($queryCount): ?>
  7. <div class="yii-debug-toolbar__block">
  8. <a href="<?= $panel->getUrl() ?>" title="Executed <?= $queryCount ?> database queries which took <?= $queryTime ?>.">
  9. <?= $panel->getSummaryName() ?> <span class="yii-debug-toolbar__label yii-debug-toolbar__label_info"><?= $queryCount ?></span> <span class="yii-debug-toolbar__label"><?= $queryTime ?></span>
  10. </a>
  11. </div>
  12. <?php endif; ?>