X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FCheckbox.class.php;h=999bff873e741585d45f8a0b927ce4892f7324f6;hb=0fa80122e692abac96010f4da8ed55c3aa52b81b;hp=6fe7ca180faa538753f6a7b678f62282143527ed;hpb=04bc6bdd39d67bcf9f63d8af4b067f1fafc06f8a;p=timetracker.git diff --git a/WEB-INF/lib/form/Checkbox.class.php b/WEB-INF/lib/form/Checkbox.class.php index 6fe7ca18..999bff87 100644 --- a/WEB-INF/lib/form/Checkbox.class.php +++ b/WEB-INF/lib/form/Checkbox.class.php @@ -29,28 +29,29 @@ import('form.FormElement'); class Checkbox extends FormElement { - var $mChecked = false; + var $checked = false; var $mOptions = null; - var $cClassName = "Checkbox"; - function __construct($name,$value="") - { - $this->name = $name; - $this->value = $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->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 +59,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\"";