HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
_search.php
Go to the documentation of this file.
1 <?php
2 $this->breadcrumbs = array(
3  UserModule::t('Rights') => array('//rights'),
4  'Sites',
5 );
6 ?>
7 <p>
8  <?php echo CHtml::link(
9  Rights::t('core', 'Edit operations fields'),
10  array('//rights/UsersSitesRights/editOperationsFields')
11  );
12  ?>
13 </p>
14 <?php
15 $form = $this->beginWidget('CActiveForm',
16  array(
17  'id' => 'SearchFilter',
18  'htmlOptions' => array('class' => 'filter_form'),
19  'action' => Yii::app()->createUrl('//rights/UsersSitesRights/search'),
20  'method' => 'get',
21  )
22 );
23 echo CHtml::submitButton('Refresh', array(
24  "id" => "filter_et_submit",
25  )
26 );
27 echo CHtml::dropDownList('pageSize', '10',
28  array(
29  '10' => '10',
30  '20' => '20',
31  '30' => '30',
32  '40' => '40',
33  '50' => '50',
34  '60' => '60',
35  '70' => '70',
36  '80' => '80',
37  '90' => '90',
38  '100' => '100',
39  ),
40  array("id" => "filter_et_list")
41 );
42 //echo CHtml::label('Page size', false, array("id" => "filter_et_label"));
43 
44 echo CHtml::textField('rights', '', array(
45  'class' => 'filter_et',
46  'placeholder' => 'view, change, ...',
47  )
48 );
49 echo CHtml::textField('siteId', '', array(
50  'class' => 'filter_et',
51  'placeholder' => 'Site ID...', /*,
52  'required'=>'true'*/
53  )
54 );
55 echo CHtml::textField('pattern', '', array(
56  'class' => 'filter_et',
57  'placeholder' => 'URL pattern...', /*,
58  'required'=>'true'*/
59  )
60 );
61 echo CHtml::textField('searchUserId', '', array(
62  'class' => 'filter_et',
63  'placeholder' => 'User ID...', /*,
64  'required'=>'true'*/
65  )
66 );
67 $this->endWidget();
68 unset($form);