コード例 #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
ファイル: Checkbox.php プロジェクト: zofe/dataform
 public function edit()
 {
     return Form::checkbox($this->name, $this->checked_value, $this->checked, $this->attributes);
 }
コード例 #3
0
ファイル: Textarea.php プロジェクト: zofe/dataform
 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);
 }