diff options
Diffstat (limited to 'framework/cli/views/shell/crud/_search.php')
| -rw-r--r-- | framework/cli/views/shell/crud/_search.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/framework/cli/views/shell/crud/_search.php b/framework/cli/views/shell/crud/_search.php new file mode 100644 index 0000000..fd81c35 --- /dev/null +++ b/framework/cli/views/shell/crud/_search.php @@ -0,0 +1,35 @@ +<?php +/** + * This is the template for generating the form view for crud. + * The following variables are available in this template: + * - $ID: the primary key name + * - $modelClass: the model class name + * - $columns: a list of column schema objects + */ +?> +<div class="wide form"> + +<?php echo "<?php \$form=\$this->beginWidget('CActiveForm', array( + 'action'=>Yii::app()->createUrl(\$this->route), + 'method'=>'get', +)); ?>\n"; ?> + +<?php foreach($columns as $column): ?> +<?php + $field=$this->generateInputField($modelClass,$column); + if(strpos($field,'password')!==false) + continue; +?> + <div class="row"> + <?php echo "<?php echo \$form->label(\$model,'{$column->name}'); ?>\n"; ?> + <?php echo "<?php echo ".$this->generateActiveField($modelClass,$column)."; ?>\n"; ?> + </div> + +<?php endforeach; ?> + <div class="row buttons"> + <?php echo "<?php echo CHtml::submitButton('Search'); ?>\n"; ?> + </div> + +<?php echo "<?php \$this->endWidget(); ?>\n"; ?> + +</div><!-- search-form -->
\ No newline at end of file |
