Ongoing refactoring - renamed a variable.
[timetracker.git] / WEB-INF / lib / form / Checkbox.class.php
index 6cd8074..6822adf 100644 (file)
@@ -33,10 +33,10 @@ class Checkbox extends FormElement {
     var $mOptions      = null;
     var $cClassName            = "Checkbox";
 
-       function Checkbox($name,$value="")
+       function __construct($name,$value="")
        {
-               $this->mName                    = $name;
-               $this->mValue                   = $value;
+               $this->name = $name;
+               $this->value = $value;
        }
 
        function setChecked($value)     { $this->mChecked = $value; }
@@ -48,10 +48,10 @@ class Checkbox extends FormElement {
        function toStringControl()      {
                if (!$this->isRenderable()) return "";
            
-           if ($this->mId=="") $this->mId = $this->mName;
+           if ($this->id=="") $this->id = $this->name;
            
                $html = "\n\t<input type=\"checkbox\"";
-               $html .= " name=\"$this->mName\" id=\"$this->mId\"";
+               $html .= " name=\"$this->name\" id=\"$this->id\"";
                
                if ($this->mTabindex!="")
                   $html .= " tabindex=\"$this->mTabindex\"";
@@ -62,7 +62,7 @@ class Checkbox extends FormElement {
                if ($this->mStyle!="")
                   $html .= " style=\"$this->mStyle\"";
 
-               if ($this->mChecked || (($this->mValue == $this->mOptions) && ($this->mValue != null)))
+               if ($this->mChecked || (($this->value == $this->mOptions) && ($this->value != null)))
                   $html .= " checked=\"true\"";
                   
                if (!$this->isEnable())