EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
_search.php
Go to the documentation of this file.
1 <?php
2 /* @var $this MessageController */
3 /* @var $model Message */
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,'id'); ?>
16  <?php echo $form->textField($model,'id'); ?>
17  </div>
18 
19  <div class="row">
20  <?php echo $form->label($model,'content'); ?>
21  <?php echo $form->textArea($model,'content',array('rows'=>6, 'cols'=>50)); ?>
22  </div>
23 
24  <div class="row buttons">
25  <?php echo CHtml::submitButton('Search'); ?>
26  </div>
27 
28 <?php $this->endWidget(); ?>
29 
30 </div><!-- search-form -->