]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/Checkbox.class.php
Refactoring - renamed a few things.
[timetracker.git] / WEB-INF / lib / form / Checkbox.class.php
index 7a49a6fb5b984e0c56dd7dd182ef4d60c2f29eda..6fe7ca180faa538753f6a7b678f62282143527ed 100644 (file)
@@ -45,9 +45,8 @@ class Checkbox extends FormElement {
        function setData($value)        { $this->mOptions = $value; }
        function getData() { return $this->mOptions; }
        
-       function toStringControl()      {
-               if (!$this->isRenderable()) return "";
-           
+       function toStringControl() {
+
            if ($this->id=="") $this->id = $this->name;
            
                $html = "\n\t<input type=\"checkbox\"";
@@ -62,7 +61,7 @@ class Checkbox extends FormElement {
                if ($this->mChecked || (($this->value == $this->mOptions) && ($this->value != null)))
                   $html .= " checked=\"true\"";
                   
-               if (!$this->isEnable())
+               if (!$this->isEnabled())
                   $html .= " disabled=\"disabled\"";
                   
                $html .= " value=\"".htmlspecialchars($this->mOptions)."\"";