X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FCheckbox.class.php;h=c27cab24c8a1705cfbc0bc2694fbf0b3b26a2528;hb=4fdb2cd8b1c8990a7ea8ed40b275dc51174e6585;hp=4c6a9fd77468a873750ab5c49177502ec17d121e;hpb=61efd9d023ae34c1290ef2e1ae25829c509caaee;p=timetracker.git diff --git a/WEB-INF/lib/form/Checkbox.class.php b/WEB-INF/lib/form/Checkbox.class.php index 4c6a9fd7..c27cab24 100644 --- a/WEB-INF/lib/form/Checkbox.class.php +++ b/WEB-INF/lib/form/Checkbox.class.php @@ -29,28 +29,28 @@ import('form.FormElement'); class Checkbox extends FormElement { - var $mChecked = false; + var $checked = false; var $mOptions = null; - var $class = 'Checkbox'; - function __construct($name,$value="") - { - $this->name = $name; - $this->value = $value; - } + function __construct($name) { + $this->class = 'Checkbox'; + $this->name = $name; + } - 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 getHtml() { - if ($this->id=="") $this->id = $this->name; - - $html = "\n\tname\" id=\"$this->id\""; + 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\""; @@ -58,8 +58,7 @@ class Checkbox extends FormElement { if ($this->style!="") $html .= " style=\"$this->style\""; - if ($this->mChecked || (($this->value == $this->mOptions) && ($this->value != null))) - $html .= " checked=\"true\""; + if (!$this->isEnabled()) $html .= " disabled=\"disabled\"";