]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/Checkbox.class.php
Ongoing refactoring of form controls.
[timetracker.git] / WEB-INF / lib / form / Checkbox.class.php
index 6cd80740d34ec55c67275d89bf2f60edb2be9790..8ee4fea03fdc319321558727765a6460855cbb4c 100644 (file)
@@ -33,9 +33,9 @@ class Checkbox extends FormElement {
     var $mOptions      = null;
     var $cClassName            = "Checkbox";
 
-       function Checkbox($name,$value="")
+       function __construct($name,$value="")
        {
-               $this->mName                    = $name;
+               $this->name                     = $name;
                $this->mValue                   = $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\"";