Yii不依赖Model的表单生成器用法实例
框架(架构)  /  管理员 发布于 7年前   313
本文实例讲述了Yii不依赖Model的表单生成器用法。分享给大家供大家参考。具体实现方法如下: 默认的Yii的表单生成器只需要这样就可以了: 默认生成的表单的label是根据$model->attributes来显示的,所以我做了2件事: 1.继承CFormInputElement覆盖renderLabel方法,将label显示成自己配置的element的label 2.继承CForm覆盖renderElement方法,$element instanceof UCFormInputElement,并覆盖render方法,将Elements和getButtons循环输出 122 在 123 在 原梓番博客 在 博主 在 1111 在
这里的application.views.site.loginForm也可以是配置数组。但是如果$model参数不传的话是会报错的:Fatal error: Call to a member function isAttributeSafe()
比如我要生成一个组表单,但是我不想依赖于model,根据配置就可以生成一组表单该怎么办,
直接上代码:
app/protected/extensions/UCForm.php
* @author Ryan
*/
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 "
上一条:
Yii框架form表单用法实例
下一条:
Yii分页用法实例详解
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号