HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
_singleEdit.php
Go to the documentation of this file.
1 <?php
2 $form=$this->beginWidget('CActiveForm',array(
3  'id' => 'updateForm',
4  'htmlOptions' => array('class' => ''),
5  'action' => Yii::app()->createUrl('UrlUpdate'),
6  'method'=>'post')
7 );
8 $this->widget('zii.widgets.jui.CJuiAccordion',array(
9  'panels'=>array(
10  'Status area'=>$this->renderPartial('__statusAreaEdit',array(
11  'itemsProvider'=>$itemsProvider,
12  'descr'=>$descr,
13 ),true),
14  'Limits area'=>$this->renderPartial('__limitsAreaEdit',array(
15  'limitsProvider'=>$limitsProvider,
16  'descr'=>$descr,
17  ),true),
18  ),
19  'options'=>array(
20  'animated'=>'easeInOutQuint',
21  'autoHeight'=>false,
22  'active'=>0,
23  'clearStyle'=>true,
24  ),
25 ));
26 echo CHtml::submitButton('!', array('class'=>'submit-right'));
27 $this->endWidget();
28 unset($form);
29 echo CHtml::tag('button', array('id'=>'update-form-urls', 'class'=>'btn btn-default'), 'Update');
30 ?>