HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
siteFields.php
Go to the documentation of this file.
1 <?php
2 /* @var $this SitesViewController */
3 
4 $this->breadcrumbs=array(
5  'Sites View'=>'/SitesView/index','Site Fields',
6 );
7 ?>
8 <?php
9 $this->widget('zii.widgets.grid.CGridView', array(
10  'id' => 'itemGrid',
11  'summaryText' => '',
12  'dataProvider' => $itemsProvider,
13  'columns' => array(
14  array(
15  'name' => 'State',
16  'value' => '$data["state"]',
17  ),
18  array(
19  'name' => 'Iterations',
20  'value' => '$data["iterations"]',
21  ),
22  array(
23  'name' => 'Resources',
24  'value' => '$data["resources"]',
25  ),
26  array(
27  'name' => 'Contents',
28  'value' => '$data["contents"]',
29  ),
30  array(
31  'name' => 'Errors',
32  'value' => '$data["errors"]',
33  ),
34  )
35 ));
36 $this->widget('zii.widgets.grid.CGridView', array(
37  'id' => 'itemGrid',
38  'summaryText' => '',
39  'dataProvider' => $itemsProvider,
40  'columns' => array(
41  array(
42  'name' => 'Root URLs',
43  'type' => 'raw',
44  'value' => '"<div class=\"scrollable\">".$data["urls"]."</div>"',
45  ),
46  )
47 ));
48 $this->widget('zii.widgets.grid.CGridView', array(
49  'id' => 'itemGrid',
50  'summaryText' => '',
51  'dataProvider' => $itemsProvider,
52  'columns' => array(
53  array(
54  'name' => 'Errors types',
55  'value' => '$data["errorMask"]'
56  ),
57  )
58 ));
59 
60 ?>