HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
_singleHistory.php
Go to the documentation of this file.
1 <h2>Preview (NOT REAL DATA)</h2>
2 <?php
3 $tabs = array();
4 foreach ($historyData as $node => $hostData) {
5  $tabs[$node] = array(
6  'id'=>$node,
7  'content'=>$this->renderPartial('__historyTab', array(
8  'dataProvider'=>$hostData
9  ), true
10  )
11  );
12 }
13 
14 $this->widget('zii.widgets.jui.CJuiTabs',array(
15  'options'=>array(
16  'collapsible'=>false,
17  ),
18  'id'=>'TabMenuHistory',
19  'tabs'=>$tabs,
20  )
21 );
22 ?>