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 AccountTypesLimitsController */
3 /* @var $model AccountTypesLimits */
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, 'AccountTypeId'); ?>
16  <?php echo $form->textField($model, 'AccountTypeId', array('size' => 20, 'maxlength' => 20)); ?>
17  </div>
18 
19  <div class="row">
20  <?php echo $form->label($model, 'LimitsKey'); ?>
21  <?php echo $form->textField($model, 'LimitsKey', array('size' => 32, 'maxlength' => 32)); ?>
22  </div>
23 
24  <div class="row">
25  <?php echo $form->label($model, 'LimitsList'); ?>
26  <?php echo $form->textArea($model, 'LimitsList', array('rows' => 6, 'cols' => 50)); ?>
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 -->