-
Notifications
You must be signed in to change notification settings - Fork 0
/
combo.class.php
executable file
·132 lines (115 loc) · 5.23 KB
/
combo.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php if(!defined('datalist_date_separator')) die('datalist.php not included!');
class Combo{
// The Combo class renders a drop down combo
// filled with elements in an array ListItem[]
// and associates each element with data from
// an array ListData[], and optionally selects
// one of the items.
var $ListItem, // array of items in the combo
$ListData, // array of items data values
$Class,
$SelectedClass,
$Style,
$SelectName,
$SelectID,
$SelectedData,
$SelectedText,
$MatchText, // will store the text value of the matching item.
$ListType, // 0: drop down combo, 1: list box, 2: radio buttons, 3: multi-selection list box
$ListBoxHeight, // if ListType=1, this is the height of the list box
$MultipleSeparator, // if ListType=3, specify the list separator here (default ,)
$RadiosPerLine, // if ListType=2, this is the number of options per line
$AllowNull,
$ApplySelect2, // boolean, default is true
$HTML; // the resulting output HTML code to use
function __construct(){ // PHP 7 compatibility
$this->Combo();
}
function Combo(){ // Constructor function
$this->Class = 'form-control';
$this->SelectedClass = 'active';
$this->HTML = '';
$this->ListType = 0;
$this->ListBoxHeight = 10;
$this->MultipleSeparator = ', ';
$this->RadiosPerLine = 1;
$this->AllowNull = true;
$this->ApplySelect2 = true;
}
function Render(){
global $Translation;
$this->HTML = '';
$ArrayCount = count($this->ListItem);
if($ArrayCount > count($this->ListData)){
$this->HTML .= 'Invalid Class Definition';
return 0;
}
if(!$this->SelectID) $this->SelectID=str_replace(array('[', ']'), '_', $this->SelectName);
if($this->ListType != 2){
if($this->ApplySelect2){
$this->HTML .= "<select style=\"width: 100%;\" name=\"$this->SelectName".($this->ListType==3 ? '[]' : '')."\" id=\"$this->SelectID\"".($this->ListType==1 ? ' size="'.($this->ListBoxHeight < $ArrayCount ? $this->ListBoxHeight : ($ArrayCount + ($this->AllowNull ? 1 : 0))).'"' : '').($this->ListType==3 ? ' multiple' : '').'>';
}else{
$this->HTML .= "<select name=\"$this->SelectName".($this->ListType==3 ? '[]' : '')."\" id=\"$this->SelectID\" class=\"$this->Class\" style=\"$this->Style\"".($this->ListType==1 ? ' size="'.($this->ListBoxHeight < $ArrayCount ? $this->ListBoxHeight : ($ArrayCount + ($this->AllowNull ? 1 : 0))).'"' : '').($this->ListType==3 ? ' multiple' : '').'>';
}
$this->HTML .= ($this->AllowNull ? "\n\t<option value=\"\"> </option>" : '');
if($this->ListType==3) $arrSelectedData=explode($this->MultipleSeparator, $this->SelectedData);
if($this->ListType==3) $arrSelectedText=explode($this->MultipleSeparator, $this->SelectedText);
for($i = 0; $i < $ArrayCount; $i++){
if($this->ListType==3){
if(in_array($this->ListData[$i], $arrSelectedData)){
$sel = "selected class=\"$this->SelectedClass\"";
$this->MatchText.=$this->ListItem[$i].$this->MultipleSeparator;
}else{
$sel = '';
}
}else{
if($this->SelectedData == $this->ListData[$i] || ($this->SelectedText == $this->ListItem[$i] && $this->SelectedText)){
$sel = "selected class=\"$this->SelectedClass\"";
$this->MatchText=$this->ListItem[$i];
$this->SelectedData=$this->ListData[$i];
$this->SelectedText=$this->ListItem[$i];
}else{
$sel = '';
}
}
$this->HTML .= "\n\t<option value=\"" . $this->ListData[$i] . "\" $sel>" . stripslashes(strip_tags($this->ListItem[$i])) . "</option>";
}
$this->HTML .= '</select>';
if($this->ApplySelect2){
$this->HTML .= '<script>jQuery(function(){ jQuery("#' . $this->SelectID . '").addClass(\'option_list\').select2({ minimumResultsForSearch: 15, width: \'90%\' }); })</script>';
}
if($this->ListType == 3 && strlen($this->MatchText)>0) $this->MatchText=substr($this->MatchText, 0, -1 * strlen($this->MultipleSeparator));
}else{
global $Translation;
$separator = ' ';
$j=0;
$this->HTML .= '<div>';
if($this->AllowNull){
$this->HTML .= "<input id=\"$this->SelectName$j\" type=\"radio\" name=\"$this->SelectName\" value=\"\" ".($this->SelectedData==''?'checked':'')."> <label for=\"$this->SelectName$j\">{$Translation['none']}</label>";
$this->HTML .= ($this->RadiosPerLine==1 ? '<br>' : $separator);
$shift=2;
}else{
$shift=1;
}
for($i = 0; $i < $ArrayCount; $i++){
$j++;
if($this->SelectedData == $this->ListData[$i] || ($this->SelectedText == $this->ListItem[$i] && $this->SelectedText)){
$sel = "checked class=\"$this->SelectedClass\"";
$this->MatchText=$this->ListItem[$i];
$this->SelectedData=$this->ListData[$i];
$this->SelectedText=$this->ListItem[$i];
}else{
$sel = '';
}
$this->HTML .= "<input id=\"$this->SelectName$j\" type=\"radio\" name=\"$this->SelectName\" value=\"{$this->ListData[$i]}\" $sel> <label for=\"$this->SelectName$j\">".str_replace('&', '&', html_attr(stripslashes($this->ListItem[$i])))."</label>";
if(($i+$shift)%$this->RadiosPerLine){
$this->HTML .= $separator;
}else{
$this->HTML .= '<br>';
}
}
$this->HTML .= '</div>';
}
return 1;
}
}