Yii表单生成器不依赖Model
今天才接触yii框架了,下面我来分享一篇我的Yii表单生成器不依赖Model笔记吧,希望此教程对各位同学会有所帮助呀。
我也不知道标题该怎么写才能描述我要说明的问题,意思就是可以放Yii的表单生成器功能更加灵活。
默认的Yii的表单生成器只需要这样就可以了:
1 $form = new CForm('application.views.site.loginForm', $model);
这里的application.views.site.loginForm也可以是配置数组。但是如果$model参数不传的话是会报错的:Fatal error: Call to a member function isAttributeSafe()
比如我要生成一个组表单,但是我不想依赖于model,根据配置就可以生成一组表单该怎么办,
默认生成的表单的label是根据$model->attributes来显示的,所以我做了2件事:
1.继承CFormInputElement覆盖renderLabel方法,将label显示成自己配置的element的label
2.继承CForm覆盖renderElement方法,$element instanceof UCFormInputElement,并覆盖render方法,将Elements和getButtons循环输出
直接上代码:
app/protected/extensions/UCForm.php
<?php
/**
* @author Ryan <yuansir@live.cn/yuansir-web.com>
*/
class UCForm extends CForm {
public function render() {
$output = $this->renderBegin();
foreach ($this->getElements() as $element) {
$output.= $element->render();
}
foreach ($this->getButtons() as $button) {
$output.= $button->render();
}
$output.= $this->renderEnd();
return $output;
}
public function renderElement($element) {
if (is_string($element)) {
if (($e = $this[$element]) === null && ($e = $this->getButtons()->itemAt($element)) === null) return $element;
else $element = $e;
}
if ($element->getVisible()) {
//UCFormInputElement 代替 CFormInputElement
if ($element instanceof UCFormInputElement) {
if ($element->type === 'hidden') return "<div style="visibility:
hidden">n" . $element->render() . "</div>n";
else return "<div class="rowfield_ {
$element->name
}
">n" . $element->render() . "</div>n";
} else if ($element instanceof CFormButtonElement) return $element->render() . "n";
else return $element->render();
}
return '';
}
}
?>再来个简单的调用示例:
<?php
/**
* @author Ryan <yuansir@live.cn/yuansir-web.com>
*/
class PlayerSearchController extends Controller {
public function actionIndex() {
$config = array(
'class' => 'ddd',
'action' => '',
'elements' => array(
'<br><br>',
'username' => array(
'label' => '用户名啊', //注意这里的label
'type' => 'text',
'maxlength' => 32,
'value' => ''
) ,
'<br><br>',
'password' => array(
'label' => '昵称啊', //注意这里的label
'type' => 'password',
'maxlength' => 32,
'value' => ''
) ,
) ,
'buttons' => array(
'login' => array(
'type' => 'submit',
'label' => 'Login',
) ,
) ,
);
$model = new CFormModel();
$form = new UCForm($config, $model);
$this->render('index', compact('form'));
}
}永久链接:http://www.phprm.com/frame/54012.html
转载随意!带上文章地址吧。