mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-24 07:57:10 +01:00
10 lines
443 B
PHP
10 lines
443 B
PHP
<?php
|
|
/* @var $panel yii\debug\panels\ProfilingPanel */
|
|
/* @var $time integer */
|
|
/* @var $memory integer */
|
|
?>
|
|
<div class="yii-debug-toolbar-block">
|
|
<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>
|
|
</div>
|