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
6 ?>
7 <?php echo "<?php \$form=\$this->beginWidget('booster.widgets.TbActiveForm',array(
8  'action'=>Yii::app()->createUrl(\$this->route),
9  'method'=>'get',
10 )); ?>\n"; ?>
11 
12 <?php foreach ($this->tableSchema->columns as $column): ?>
13  <?php
14  $field = $this->generateInputField($this->modelClass, $column);
15  if (strpos($field, 'password') !== false) {
16  continue;
17  }
18  ?>
19  <?php echo "<?php echo " . $this->generateActiveGroup($this->modelClass, $column) . "; ?>\n"; ?>
20 
21 <?php endforeach; ?>
22  <div class="form-actions">
23  <?php echo "<?php \$this->widget('booster.widgets.TbButton', array(
24  'buttonType' => 'submit',
25  'context'=>'primary',
26  'label'=>'Search',
27  )); ?>\n"; ?>
28  </div>
29 
30 <?php echo "<?php \$this->endWidget(); ?>\n"; ?>