HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
__integrityCheckFail.php
Go to the documentation of this file.
1 <div class = "dialog-overlay">
2  <div id = "integrityCheck-dialog" class = "basic-modal">
3  <div>
4  <p>
5  <h4>Root URLs integrity check</h4>
6  </p>
7  <?
8  $this->widget('zii.widgets.grid.CGridView', array(
9  'id' => 'itemGrid',
10  'summaryText' => '',
11  'dataProvider' => $itemsProvider,
12  'htmlOptions'=>array('class'=>'integrity-diff'),
13  'columns' => array(
14  array(
15  'name' => 'dc_sites.sites_urls',
16  'type' => 'raw',
17  'value' => '$data["Sites"]',
18  'htmlOptions'=>array(
19  'class'=>'lefted',
20  ),
21  ),
22  array(
23  'name' => '',
24  'type' => 'html',
25  'value' => '$data["arrow"]',
26  'htmlOptions'=>array('class'=>'centred'),
27  ),
28  array(
29  'name' => 'dc_urls.urls',
30  'type' => 'raw',
31  'value' => '$data["URLs"]',
32  'htmlOptions'=>array('class'=>'righted'),
33  ),
34  )
35  ));
36  ?>
37  </div>
38  <form action = "/SitesView/integrityCheckRequest" method = "post" id = "integrityCheckForm">
39  <table>
40  <tr>
41  <td>
42  <input type="button" value="Fix from site's options" onclick = "integrityFixSubmit()"/>
43  </td>
44  <td>
45  <input type = "button" value = "Cancel" onclick = "cancelIntegrityCheck()"/>
46  </td>
47  </tr>
48  </table>
49  <?php
50  echo CHtml::hiddenField('id', $id);
51  ?>
52  </form>
53  </div>
54 </div>