HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
view.php
Go to the documentation of this file.
1 <?php
2 /* @var Yii2ViewPanel $this */
3 /* @var array $data */
4 ?>
5 <?php if (count($data)): ?>
6  <?php foreach ($data as $item): ?>
7  <?php echo $this->render(dirname(__FILE__) . '/_detail.php', array(
8  'caption' => $item['view'],
9  'values' => $item['data'],
10  )); ?>
11  <?php endforeach; ?>
12 <?php else: ?>
13  <p>Empty</p>
14 <?php endif; ?>