diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-08 15:26:22 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-08 15:26:22 +0000 |
commit | afc02bc1c3db9ffe8c9bf660c8aa08666752edfb (patch) | |
tree | 9a02b06b390dd0c1e796474b888e92c245473424 /h-source/Library/Form/Checkbox.php | |
parent | 7fdac301801bc44f6fdb343187413bdfd2d5366c (diff) |
h-source:added new EasyGiant SVN version
Diffstat (limited to 'h-source/Library/Form/Checkbox.php')
-rwxr-xr-x | h-source/Library/Form/Checkbox.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/h-source/Library/Form/Checkbox.php b/h-source/Library/Form/Checkbox.php index a606e76..4074210 100755 --- a/h-source/Library/Form/Checkbox.php +++ b/h-source/Library/Form/Checkbox.php @@ -31,14 +31,16 @@ class Form_Checkbox extends Form_Entry public function render($value = null) { - $wrap = $this->getWrapElements(); - $returnString = "<div class='".$this->getEntryClass()."'>\n\t"; - $returnString .= $wrap[0]; - $returnString .= $this->getLabelTag(); + $wrap = $this->getWrapElements($value); + $returnString = $wrap[0]; + $returnString .= "<div class='".$this->getEntryClass()."'>\n\t"; $returnString .= $wrap[1]; - $returnString .= Html_Form::checkbox($this->entryName, $value, $this->options, $this->className,$this->idName); + $returnString .= $this->getLabelTag(); $returnString .= $wrap[2]; + $returnString .= Html_Form::checkbox($this->entryName, $value, $this->options, $this->className,$this->idName); + $returnString .= $wrap[3]; $returnString .="</div>\n"; + $returnString .= $wrap[4]; return $returnString; } |