Some further refactoring in form classes.
[timetracker.git] / WEB-INF / lib / form / Checkbox.class.php
index 7a49a6f..4c6a9fd 100644 (file)
@@ -31,7 +31,7 @@ import('form.FormElement');
 class Checkbox extends FormElement {
     var $mChecked      = false;
     var $mOptions      = null;
-    var $cClassName            = "Checkbox";
+    var $class = 'Checkbox';
 
        function __construct($name,$value="")
        {
@@ -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 getHtml() {
+
            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)."\"";