Further refactoring of the FormElement class.
[timetracker.git] / WEB-INF / lib / form / Checkbox.class.php
index 6822adf..8c20288 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,27 +45,23 @@ 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\"";
                $html .= " name=\"$this->name\" id=\"$this->id\"";
-               
-               if ($this->mTabindex!="")
-                  $html .= " tabindex=\"$this->mTabindex\"";
-                  
-               if ($this->mOnChange!="")
-                  $html .= " onchange=\"$this->mOnChange\"";
+
+               if ($this->on_change!="")
+                  $html .= " onchange=\"$this->on_change\"";
                   
-               if ($this->mStyle!="")
-                  $html .= " style=\"$this->mStyle\"";
+               if ($this->style!="")
+                  $html .= " style=\"$this->style\"";
 
                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)."\"";