2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
11 // | There are only two ways to violate the license:
13 // | 1. To redistribute this code in source form, with the copyright
14 // | notice or license removed or altered. (Distributing in compiled
15 // | forms without embedded copyright notices is permitted).
17 // | 2. To redistribute modified versions of this code in *any* form
18 // | that bears insufficient indications that the modifications are
19 // | not the work of the original author(s).
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
24 // +----------------------------------------------------------------------+
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
29 import('form.FormElement');
31 class CheckboxGroup extends FormElement {
32 var $mChecked = false;
33 var $mOptions = array();
36 var $mDataKeys = array();
39 var $lSelNone = "None";
41 function __construct($name) {
42 $this->class = 'CheckboxGroup';
46 function setChecked($value) { $this->mChecked = $value; }
47 function isChecked() { return $this->mChecked; }
49 function setData($value) { $this->mOptions = $value; }
50 function getData() { return $this->mOptions; }
52 function setDataKeys($keys) { $this->mDataKeys = $keys; $this->mDataDeep = 2; }
53 function getDataKeys() { return $this->mDataKeys; }
55 function setLayout($value) { $this->mLayout = $value; }
56 function getLayout() { return $this->mLayout; }
58 function setGroupIn($value) { $this->mGroupIn = $value; if ($this->mGroupIn<1) $this->mGroupIn = 1;}
59 function getGroupIn() { return $this->mGroupIn; }
61 function localize($i18n) {
62 $this->lSelAll = $i18n->getKey('label.select_all');
63 $this->lSelNone = $i18n->getKey('label.select_none');
68 if ($this->id=="") $this->id = $this->name;
70 $renderArray = array();
74 if ($this->mLayout=="H") {
76 if (is_array($this->mOptions)) {
77 $renderCols = $this->mGroupIn;
78 $renderRows = ceil(count($this->mOptions) / $this->mGroupIn);
80 foreach ($this->mOptions as $optkey=>$optval) {
81 if ($this->mDataDeep>1) {
82 $optkey = $optval[$this->mDataKeys[0]];
83 $optval = $optval[$this->mDataKeys[1]];
85 $html = "<input type=\"checkbox\" name=\"$this->name[]\" id=\"$this->id"."_".$i."\"";
86 if (is_array($this->value)) {
87 foreach ($this->value as $element) {
88 if (($element == $optkey) && ($element != null))
89 $html .= " checked=\"true\"";
92 $html .= " value=\"".htmlspecialchars($optkey)."\"> <label for=\"$this->id"."_".$i."\">".htmlspecialchars($optval)."</label>";
93 $renderArray[$col][$row] = $html;
96 if ($col==$this->mGroupIn) { $col = 0; $row++; }
102 if ($this->mLayout=="V") {
104 if (is_array($this->mOptions)) {
105 $renderCols = ceil(count($this->mOptions) / $this->mGroupIn);
106 $renderRows = $this->mGroupIn;
108 foreach ($this->mOptions as $optkey=>$optval) {
109 if ($this->mDataDeep>1) {
110 $optkey = $optval[$this->mDataKeys[0]];
111 $optval = $optval[$this->mDataKeys[1]];
113 $html = "<input type=\"checkbox\" name=\"$this->name[]\" id=\"$this->id"."_".$i."\"";
114 if (is_array($this->value)) {
115 foreach ($this->value as $element) {
116 if (($element == $optkey) && ($element != null))
117 $html .= " checked=\"true\"";
120 $html .= " value=\"".htmlspecialchars($optkey)."\"> <label for=\"$this->id"."_".$i."\">".htmlspecialchars($optval)."</label>";
121 $renderArray[$col][$row] = $html;
124 if ($row==$this->mGroupIn) { $row = 0; $col++; }
131 $html = "\n\t<table style=\"".$this->style."\"><tr><td align=\"center\" bgcolor=\"eeeeee\">\n";
132 $html .= '<a href="#" onclick="setAll'.$this->name.'(true);return false;">'.$this->lSelAll.'</a> / <a href="#" onclick="setAll'.$this->name.'(false);return false;">'.$this->lSelNone.'</a>';
133 $html .= "</td></tr>\n";
135 $html .= "\n\t<table width=\"100%\">\n";
136 for ($i = 0; $i < $renderRows; $i++) {
138 for ($j = 0; $j < $renderCols; $j++) {
139 $html .= "\t<td width=\"".(floor(100/$renderCols))."%\">".(isset($renderArray[$j][$i])?$renderArray[$j][$i]:" ")."</td>\n";
143 $html .= "</table>\n";
144 $html .= "</td></tr></table>\n";
147 $str .= "function setAll".$this->name."(value) {\n";
148 $str .= "\tvar formInputs = document.getElementsByTagName(\"input\");\n";
149 $str .= "\tfor (var i = 0; i < formInputs.length; i++) {\n";
150 $str .= "\t\tif ((formInputs.item(i).type=='checkbox') && (formInputs.item(i).name=='".$this->name."[]')) {\n";
151 $str .= "\t\tformInputs.item(i).checked=value;\n";
154 $str .= "</script>\n";