HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
profiling_bar.php
Go to the documentation of this file.
1 <?php
2 /* @var Yii2ProfilingPanel $this */
3 /* @var string $time */
4 /* @var string $memory */
5 ?>
6 <div class="yii2-debug-toolbar-block">
7  <a href="<?php echo $this->getUrl(); ?>" title="Total request processing time was <?php echo $time; ?>">
8  Time <span class="label"><?php echo $time; ?></span>
9  </a>
10 </div>
11 <div class="yii2-debug-toolbar-block">
12  <a href="<?php echo $this->getUrl(); ?>" title="Peak memory consumption was <?php echo $memory; ?>">
13  Memory <span class="label"><?php echo $memory; ?></span>
14  </a>
15 </div>