HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
single.php
Go to the documentation of this file.
1 <?php
2 $this->widget('zii.widgets.jui.CJuiTabs',array(
3  'options'=>array(
4  'collapsible'=>false,
5  ),
6  'id'=>'TabMenu',
7  'tabs'=>array(
8  'Resource info'=>array(
9  'id'=>'view',
10  'content'=>$this->renderPartial('_singleView', array(
11  'itemsProvider' => $itemsProviderHl,
12  'limitsProvider' => $limitsProvider,
13  'errorsProvider' => $errorsProvider,
14  'tagsProvider' => $tagsProvider,
15  'params' => $params
16  ),TRUE
17  )
18  ),
19  'Edit'=>array(
20  'id'=>'edit',
21  'content'=>$this->renderPartial('_singleEdit', array(
22  'itemsProvider' => $itemsProvider,
23  'limitsProvider' => $limitsProvider,
24  'descr' => $descr,
25  ),TRUE
26  )
27  ),
28  'Content'=>array(
29  'id'=>'contents',
30  'content'=>$this->renderPartial('_singleContent', array(
31  'p' => $contentParams,
32  ),TRUE
33  )
34  ),
35  'History'=>array(
36  'id'=>'history',
37  'content'=>$this->renderPartial('_singleHistory', array(
38  'historyData' => $historyData,
39  ),TRUE
40  )
41  ),
42  ),
43 ));
44 ?>