示例#1
0
文件: Field.php 项目: zofe/dataform
 /**
  * display field on "hide" status
  * 
  * @return string
  */
 public function hide()
 {
     return Form::hidden($this->name, $this->value);
 }
示例#2
0
 public function edit()
 {
     return Form::checkbox($this->name, $this->checked_value, $this->checked, $this->attributes);
 }
示例#3
0
 public function edit()
 {
     return Form::textarea($this->name, $this->value, $this->attributes);
 }
示例#4
0
文件: Select.php 项目: zofe/dataform
 public function edit()
 {
     return Form::select($this->name, $this->options, $this->value, $this->attributes);
 }