X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/9a23a8c0a51b7ec38a96f525484134f3cb85dc7e..4a605a698d07ecdc11e11aa8921485ace261cdba:/WEB-INF/lib/form/Checkbox.class.php diff --git a/WEB-INF/lib/form/Checkbox.class.php b/WEB-INF/lib/form/Checkbox.class.php index f605edf6..6822adf7 100644 --- a/WEB-INF/lib/form/Checkbox.class.php +++ b/WEB-INF/lib/form/Checkbox.class.php @@ -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\tmName\" 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()) @@ -75,4 +75,3 @@ class Checkbox extends FormElement { return $html; } } -?> \ No newline at end of file