X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/a07b6f8bccda226991ced6fe25f1c9c508e423e5..04bc6bdd39d67bcf9f63d8af4b067f1fafc06f8a:/WEB-INF/lib/form/CheckboxGroup.class.php
diff --git a/WEB-INF/lib/form/CheckboxGroup.class.php b/WEB-INF/lib/form/CheckboxGroup.class.php
index f9d850fc..9d19d278 100644
--- a/WEB-INF/lib/form/CheckboxGroup.class.php
+++ b/WEB-INF/lib/form/CheckboxGroup.class.php
@@ -41,8 +41,8 @@ class CheckboxGroup extends FormElement {
function __construct($name,$value="")
{
- $this->mName = $name;
- $this->mValue = $value;
+ $this->name = $name;
+ $this->value = $value;
}
function setChecked($value) { $this->mChecked = $value; }
@@ -66,10 +66,9 @@ class CheckboxGroup extends FormElement {
$this->lSelNone = $i18n->getKey('label.select_none');
}
- function toStringControl() {
- if (!$this->isRenderable()) return "";
-
- if ($this->mId=="") $this->mId = $this->mName;
+ function toStringControl() {
+
+ if ($this->id=="") $this->id = $this->name;
$renderArray = array();
$renderCols = 0;
@@ -86,14 +85,14 @@ class CheckboxGroup extends FormElement {
$optkey = $optval[$this->mDataKeys[0]];
$optval = $optval[$this->mDataKeys[1]];
}
- $html = "mName[]\" id=\"$this->mId"."_".$i."\"";
- if (is_array($this->mValue)) {
- foreach ($this->mValue as $value) {
- if (($value == $optkey) && ($value != null))
+ $html = "name[]\" id=\"$this->id"."_".$i."\"";
+ if (is_array($this->value)) {
+ foreach ($this->value as $element) {
+ if (($element == $optkey) && ($element != null))
$html .= " checked=\"true\"";
}
}
- $html .= " value=\"".htmlspecialchars($optkey)."\"> ";
+ $html .= " value=\"".htmlspecialchars($optkey)."\"> ";
$renderArray[$col][$row] = $html;
$col++;
@@ -114,14 +113,14 @@ class CheckboxGroup extends FormElement {
$optkey = $optval[$this->mDataKeys[0]];
$optval = $optval[$this->mDataKeys[1]];
}
- $html = "mName[]\" id=\"$this->mId"."_".$i."\"";
- if (is_array($this->mValue)) {
- foreach ($this->mValue as $value) {
- if (($value == $optkey) && ($value != null))
+ $html = "name[]\" id=\"$this->id"."_".$i."\"";
+ if (is_array($this->value)) {
+ foreach ($this->value as $element) {
+ if (($element == $optkey) && ($element != null))
$html .= " checked=\"true\"";
}
}
- $html .= " value=\"".htmlspecialchars($optkey)."\"> ";
+ $html .= " value=\"".htmlspecialchars($optkey)."\"> ";
$renderArray[$col][$row] = $html;
$row++;
@@ -132,7 +131,7 @@ class CheckboxGroup extends FormElement {
}
- $html = "\n\t
mStyle."\">| \n";
+ $html = "\n\t |