summary.php 443 Bytes
Newer Older
1
<?php
2 3 4
/* @var $panel yii\debug\panels\ProfilingPanel */
/* @var $time integer */
/* @var $memory integer */
5
?>
6
<div class="yii-debug-toolbar-block">
7 8
    <a href="<?= $panel->getUrl() ?>" title="Total request processing time was <?= $time ?>">Time <span class="label label-info"><?= $time ?></span></a>
    <a href="<?= $panel->getUrl() ?>" title="Peak memory consumption">Memory <span class="label label-info"><?= $memory ?></span></a>
Qiang Xue committed
9
</div>