HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
_toolbar.php
Go to the documentation of this file.
1 <?php
2 /* @var DefaultController $this */
3 /* @var Yii2DebugPanel[] $panels */
4 
5 ?>
6 <div class="navbar">
7  <div class="navbar-inner">
8  <div class="container">
9  <div class="yii2-debug-toolbar-block title">
10  Yii Debugger
11  </div>
12  <?php foreach ($panels as $panel): ?>
13  <?php echo $panel->getSummary(); ?>
14  <?php endforeach; ?>
15  </div>
16  </div>
17 </div>
18 <?php
19 Yii::app()->clientScript->registerScript(__CLASS__ . '#toolbar',
20  '$(".yii2-debug-toolbar-block a[title]").tooltip({placement:"bottom"});'
21 );
22 ?>