-
Notifications
You must be signed in to change notification settings - Fork 1
/
Amslib_Form.php
executable file
·209 lines (179 loc) · 5.2 KB
/
Amslib_Form.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
/*******************************************************************************
* Copyright (c) {15/03/2008} {Christopher Thomas}
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Contributors/Author:
* {Christopher Thomas} - Creator - [email protected]
*
*******************************************************************************/
/**
* class: Amslib_Form
*
* group: core
*
* file: Amslib_Form.php
*
* description: todo write description
*
* todo: write documentation
*
*/
class Amslib_Form
{
/**
* method: selectOptions
*
* todo: write documentation
*/
static public function selectOptions($array,$selected=NULL,$indexText=NULL,$indexValue=NULL,$createAttributes=false)
{
$options = array();
foreach(Amslib_Array::valid($array) as $arrayKey=>$item){
if(is_array($item)){
$text = $indexText && isset($item[$indexText]) ? $item[$indexText] : "";
$value = $indexValue && isset($item[$indexValue]) ? $item[$indexValue] : "";
}else if(is_string($item) && $indexText == "use_key"){
$text = $item;
$value = $arrayKey;
}else{
$text = $value = $item;
}
$attributes = array();
if($createAttributes && is_array($item) && isset($item[$indexText]) && isset($item[$indexValue])){
unset($item[$indexText],$item[$indexValue]);
foreach($item as $k=>&$v) $v="$k='$v'";
$attributes = $item;
}
$attributes = implode(" ",$attributes);
if(strlen($text) == 0 || strlen($value) == 0) continue;
$enabled = $value == $selected ? "selected='selected'" : "";
$options[] = "<option $enabled value='$value' $attributes>$text</option>";
}
return implode("",$options);
}
/**
* method: monthOptions
*
* todo: write documentation
*/
static public function monthOptions($start=-1,$stop=-1,$selected=NULL,$pad=NULL)
{
if($start < 0 || $start > 12) $start = 1;
if($stop < 0 || $stop > 12) $stop = 12;
$keys = range($start,$stop);
$months = array();
foreach($keys as $k){
$index = $k;
if($pad !== NULL && is_string($pad)){
$index = str_pad($k,strlen($pad),$pad[0],STR_PAD_LEFT);
}
$months[$index] = date("F",mktime(0,0,0,$k));
}
return self::selectOptions($months,$selected,"use_key");
}
/**
* method: numericSelectOptions
*
* todo: write documentation
*
* note: is this method deprecated now? seems so?
*/
static public function numericSelectOptions($start,$stop,$selected=NULL,$pad=NULL)
{
return self::numberSequenceToSelectOptions($start,$stop,$selected,$pad);
}
/**
* method: numberSequenceToSelectOptions
*
* todo: write documentation
*/
static public function numberSequenceToSelectOptions($start,$stop,$selected=NULL,$pad=NULL)
{
$options = "";
if(!is_numeric($start) || !is_numeric($stop)) return $options;
foreach(range($start,$stop) as $a){
$enabled = ($a == $selected) ? "selected='selected'" : "";
if($pad !== NULL && is_string($pad)) $a = str_pad($a,strlen($pad),$pad[0],STR_PAD_LEFT);
$options .= "<option $enabled value='$a'>$a</option>";
}
return $options;
}
/**
* method: isChecked
*
* todo: write documentation
*
* note: this is a shorter, more compact, easier to remember version of the above and
* removes the duplication of having two methods identical functionality with different names
*/
static public function isChecked($value,$compare)
{
return $value == $compare ? "checked='checked'" : "";
}
/**
* method: getFilename
*
* todo: write documentation
*/
static public function getFilename($name)
{
$file = Amslib_FILES::get($name);
return ($file && isset($file["name"])) ? $file["name"] : false;
}
/**
* method: getTempFilename
*
* todo: write documentation
*/
static public function getTempFilename($name)
{
$file = Amslib_FILES::get($name);
return ($file && isset($file["tmp_name"])) ? $file["tmp_name"] : false;
}
/**
* method: arrayToSelectOptions
*
* todo: write documentation
*
* DEPRECATED: use selectOptions
*/
static public function arrayToSelectOptions($array,$keyText,$keyValue,$selected=NULL)
{
return self::selectOptions($array,$selected,$keyText,$keyValue);
}
/**
* method: selectRadioButton
*
* todo: write documentation
*
* DEPRECATED: use isChecked
*/
static public function selectRadioButton($value,$compare)
{
return self::isChecked($value,$compare);
}
/**
* method: selectCheckbox
*
* todo: write documentation
*
* DEPRECATED: use isChecked
*/
static public function selectCheckbox($value,$compare)
{
return self::isChecked($value,$compare);
}
}