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 /* @var $this CustomerController */
3 /* @var $model PersonalInfo */
4 /* @var $form CActiveForm */
5 ?>
6 
7 <div class="wide form">
8 
9 <?php $form=$this->beginWidget('CActiveForm', array(
10  'action'=>Yii::app()->createUrl($this->route),
11  'method'=>'get',
12 )); ?>
13 
14  <div class="row">
15  <?php echo $form->label($model,'first_name'); ?>
16  <?php echo $form->textField($model,'first_name',array('size'=>40,'maxlength'=>40)); ?>
17  </div>
18 
19  <div class="row">
20  <?php echo $form->label($model,'last_name'); ?>
21  <?php echo $form->textField($model,'last_name',array('size'=>40,'maxlength'=>40)); ?>
22  </div>
23 
24  <div class="row">
25  <?php echo $form->label($model,'status'); ?>
26  <?php echo $form->textField($model,'status',array('size'=>20,'maxlength'=>20)); ?>
27  </div>
28 
29  <div class="row buttons">
30  <?php echo CHtml::submitButton('Search'); ?>
31  </div>
32 
33 <?php $this->endWidget(); ?>
34 
35 </div><!-- search-form -->