包 | system.web.form |
---|---|
继承 | class CFormStringElement » CFormElement » CComponent |
源自 | 1.1 |
版本 | $Id: CFormStringElement.php 3426 2011-10-25 00:01:09Z alexander.makarow $ |
源码 |
CFormStringElement 描绘表单中的一个字符串。
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
attributes | array | 通过这个对象来表现HTML元素的属性列表(name=>value)。 | CFormElement |
content | string | the string content | CFormStringElement |
on | string | 返回一个值,来表明这个字符串在哪些场景中是可见的。 | CFormStringElement |
parent | mixed | 这个元素的真系父类。它可能是CForm对象,也可能是CBaseController对象。 (控制器或挂件)。 | CFormElement |
visible | boolean | 返回值说明这个元素是否可见并需要渲染。 | CFormElement |
公共方法
受保护方法
方法 | 描述 | 定义在 |
---|---|---|
evaluateVisible() | 评估元素的可见性。 | CFormStringElement |
属性详细
content
属性
public string $content;
the string content
on
属性
返回一个值,来表明这个字符串在哪些场景中是可见的。 如果值为空。意味着字符串在所有的场景中都可见。 否则,只有当模型的名字能在这个值中找到时,字符串才可见。 详见CModel::scenario 来获取更多的模块场景信息。
方法详细
evaluateVisible()
方法
protected boolean evaluateVisible()
| ||
{return} | boolean | 元素是否可见。 |
protected function evaluateVisible()
{
return empty($this->_on) || in_array($this->getParent()->getModel()->getScenario(),$this->_on);
}
评估元素的可见性。 这个方法将检查on属性 如果模型在场景中,那么字符串就应该显示。
getOn()
方法
public string getOn()
| ||
{return} | string | 逗号分隔的场景名称。默认为null。 |
public function getOn()
{
return $this->_on;
}
返回一个值,来表明这个字符串在哪些场景中是可见的。 如果值为空。意味着字符串在所有的场景中都可见。 否则,只有当模型的名字能在这个值中找到时,字符串才可见。 详见CModel::scenario 来获取更多的模块场景信息。
render()
方法
public string render()
| ||
{return} | string | 字符串content |
public function render()
{
return $this->content;
}
渲染元素。 默认简单的返回content.
setOn()
方法
public void setOn(string $value)
| ||
$value | string | 逗号分隔的场景名称。 |
public function setOn($value)
{
$this->_on=preg_split('/[\s,]+/',$value,-1,PREG_SPLIT_NO_EMPTY);
}