X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/33399ff6a8bdfe9b989810dafe9c4dbf3cf3b685..0fa80122e692abac96010f4da8ed55c3aa52b81b:/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 6cd80740..999bff87 100644
--- a/WEB-INF/lib/form/Checkbox.class.php
+++ b/WEB-INF/lib/form/Checkbox.class.php
@@ -29,43 +29,39 @@
import('form.FormElement');
class Checkbox extends FormElement {
- var $mChecked = false;
+ var $checked = false;
var $mOptions = null;
- var $cClassName = "Checkbox";
- function Checkbox($name,$value="")
- {
- $this->mName = $name;
- $this->mValue = $value;
- }
+ function __construct($name, $value = '') {
+ $this->class = 'Checkbox';
+ $this->name = $name;
+ $this->value = $value;
+ }
- function setChecked($value) { $this->mChecked = $value; }
- function isChecked() { return $this->mChecked; }
+ function setChecked($value) { $this->checked = $value; }
+ function isChecked() { return $this->checked; }
function setData($value) { $this->mOptions = $value; }
function getData() { return $this->mOptions; }
-
- function toStringControl() {
- if (!$this->isRenderable()) return "";
-
- if ($this->mId=="") $this->mId = $this->mName;
-
- $html = "\n\tmName\" id=\"$this->mId\"";
-
- if ($this->mTabindex!="")
- $html .= " tabindex=\"$this->mTabindex\"";
-
- if ($this->mOnChange!="")
- $html .= " onchange=\"$this->mOnChange\"";
+
+ function getHtml() {
+ if ($this->id == '') $this->id = $this->name;
+
+ $html = "\n\tid\" name=\"$this->name\"";
+
+ if ($this->checked || (($this->value == $this->mOptions) && ($this->value != null)))
+ $html.= " checked=\"true\"";
+
+ 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->mValue == $this->mOptions) && ($this->mValue != null)))
- $html .= " checked=\"true\"";
- if (!$this->isEnable())
+ if (!$this->isEnabled())
$html .= " disabled=\"disabled\"";
$html .= " value=\"".htmlspecialchars($this->mOptions)."\"";