summary.php 515 B

123456789101112
  1. <?php
  2. /* @var $panel yii\httpclient\debug\HttpClientPanel */
  3. /* @var $queryCount int */
  4. /* @var $queryTime int */
  5. ?>
  6. <?php if ($queryCount): ?>
  7. <div class="yii-debug-toolbar__block">
  8. <a href="<?= $panel->getUrl() ?>" title="Executed <?= $queryCount ?> HTTP Requests which took <?= $queryTime ?>.">
  9. HTTP Requests <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; ?>