forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdate_api.php
280 lines (253 loc) · 8.1 KB
/
date_api.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Date API
*
* @package CoreAPI
* @subpackage DateAPI
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright 2002 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*
* @uses authentication_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses helper_api.php
* @uses html_api.php
* @uses lang_api.php
* @uses user_pref_api.php
* @uses utility_api.php
*/
require_api( 'authentication_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'helper_api.php' );
require_api( 'html_api.php' );
require_api( 'lang_api.php' );
require_api( 'user_pref_api.php' );
require_api( 'utility_api.php' );
$g_cache_timezone = array();
/**
* checks if date is null
* @param integer $p_date Date.
* @return boolean
* @access public
*/
function date_is_null( $p_date ) {
return $p_date == date_get_null();
}
/**
* gets null date
* @return integer
* @access public
*/
function date_get_null() {
return 1;
}
/**
* gets Unix timestamp from date string
* @param string $p_date A valid date/time string (see http://php.net/manual/en/datetime.formats.php)
* @return false|int a timestamp on success, null date when $p_date is blank or false on failure.
* @access public
*/
function date_strtotime( $p_date ) {
if( is_blank( $p_date ) ) {
return date_get_null();
}
return strtotime( $p_date );
}
/**
* set new timezone
* @param string $p_timezone PHP timezone to set.
* @return void
* @access public
*/
function date_set_timezone( $p_timezone ) {
global $g_cache_timezone;
array_push( $g_cache_timezone, date_default_timezone_get() );
if( !date_default_timezone_set( $p_timezone ) ) {
# unable to set timezone
trigger_error( ERROR_UPDATING_TIMEZONE, WARNING );
}
}
/**
* restore previous timezone
* @return void
* @access public
*/
function date_restore_timezone() {
global $g_cache_timezone;
$t_timezone = array_pop( $g_cache_timezone );
if( $t_timezone === null ) {
return;
}
if( !date_default_timezone_set( $t_timezone ) ) {
# unable to set timezone
trigger_error( ERROR_UPDATING_TIMEZONE, WARNING );
}
}
/**
* Print html option tags for month in a select list - in user's language
* @param integer $p_month Integer representing month of the year.
* @return void
* @access public
*/
function print_month_option_list( $p_month = 0 ) {
for( $i = 1;$i <= 12;$i++ ) {
$t_month_name = date( 'F', mktime( 0, 0, 0, $i, 1, 2000 ) );
if( $i == $p_month ) {
echo '<option value="' . $i . '" selected="selected">' . lang_get( 'month_' . strtolower( $t_month_name ) ) . '</option>';
} else {
echo '<option value="' . $i . '">' . lang_get( 'month_' . strtolower( $t_month_name ) ) . '</option>';
}
}
}
/**
* Print numeric month html option tags for select list
*
* @param integer $p_month Integer representing month of the year.
* @return void
* @access public
*/
function print_numeric_month_option_list( $p_month = 0 ) {
for( $i = 1;$i <= 12;$i++ ) {
if( $i == $p_month ) {
echo '<option value="' . $i . '" selected="selected">' . $i . '</option>';
} else {
echo '<option value="' . $i . '">' . $i . '</option>';
}
}
}
/**
* Print html option tags for Day of month in a select list
* @param integer $p_day Integer representing day of the month.
* @return void
* @access public
*/
function print_day_option_list( $p_day = 0 ) {
for( $i = 1;$i <= 31;$i++ ) {
if( $i == $p_day ) {
echo '<option value="' . $i . '" selected="selected">' . $i . '</option>';
} else {
echo '<option value="' . $i . '">' . $i . '</option>';
}
}
}
/**
* Print html option tags for year since 1999 in a select list
* @todo deprecate this for year_range
* @param integer $p_year Integer representing year.
* @return void
* @access public
*/
function print_year_option_list( $p_year = 0 ) {
$t_current_year = date( 'Y' );
for( $i = $t_current_year;$i > 1999;$i-- ) {
if( $i == $p_year ) {
echo '<option value="' . $i . '" selected="selected">' . $i . '</option>';
} else {
echo '<option value="' . $i . '">' . $i . '</option>';
}
}
}
/**
* Print html option tags for year in a select list
* @param integer $p_year Current Year.
* @param integer $p_start First Year to display.
* @param integer $p_end Last Year to display.
* @return void
* @access public
*/
function print_year_range_option_list( $p_year = 0, $p_start = 0, $p_end = 0 ) {
$t_current = date( 'Y' );
$t_forward_years = config_get( 'forward_year_count' );
$t_start_year = $p_start;
if( $t_start_year == 0 ) {
$t_backward_years = config_get( 'backward_year_count' );
$t_start_year = $t_current - $t_backward_years;
}
if( ( $p_year < $t_start_year ) && ( $p_year != 0 ) ) {
$t_start_year = $p_year;
}
$t_end_year = $p_end;
if( $t_end_year == 0 ) {
$t_end_year = $t_current + $t_forward_years;
}
if( $p_year > $t_end_year ) {
$t_end_year = $p_year + $t_forward_years;
}
for( $i = $t_start_year;$i <= $t_end_year;$i++ ) {
if( $i == $p_year ) {
echo '<option value="' . $i . '" selected="selected">' . $i . '</option>';
} else {
echo '<option value="' . $i . '">' . $i . '</option>';
}
}
}
/**
* Print <select> tag for selecting a date
* @param string $p_name Name for html select field attribute.
* @param string $p_format Date format e.g. YmD.
* @param integer $p_date Integer timestamp representing date.
* @param boolean $p_default_disable Whether date selector is disabled.
* @param boolean $p_allow_blank Whether blank/null date is allowed.
* @param integer $p_year_start First year to display in drop down.
* @param integer $p_year_end Last year to display in drop down.
* @param string $p_input_css CSS classes to use with input fields
* @return void
* @access public
*/
function print_date_selection_set( $p_name, $p_format, $p_date = 0, $p_default_disable = false, $p_allow_blank = false, $p_year_start = 0, $p_year_end = 0, $p_input_css = "input-sm" ) {
$t_chars = preg_split( '//', $p_format, -1, PREG_SPLIT_NO_EMPTY );
if( $p_date != 0 ) {
$t_date = preg_split( '/-/', date( 'Y-m-d', $p_date ), -1, PREG_SPLIT_NO_EMPTY );
} else {
$t_date = array( 0, 0, 0, );
}
$t_disable = '';
if( $p_default_disable == true ) {
$t_disable = ' disabled="disabled"';
}
$t_blank_line = '';
if( $p_allow_blank == true ) {
$t_blank_line = '<option value="0"></option>';
}
foreach( $t_chars as $t_char ) {
if( strcmp( $t_char, 'M' ) == 0 ) {
echo '<select class="' . $p_input_css . '" ' . helper_get_tab_index() . ' name="' . $p_name . '_month"' . $t_disable . '>';
echo $t_blank_line;
print_month_option_list( $t_date[1] );
echo '</select>' . "\n";
}
if( strcmp( $t_char, 'm' ) == 0 ) {
echo '<select class="' . $p_input_css . '" ' . helper_get_tab_index() . ' name="' . $p_name . '_month"' . $t_disable . '>';
echo $t_blank_line;
print_month_option_list( $t_date[1] );
echo '</select>' . "\n";
}
if( strcasecmp( $t_char, 'D' ) == 0 ) {
echo '<select class="' . $p_input_css . '" ' . helper_get_tab_index() . ' name="' . $p_name . '_day"' . $t_disable . '>';
echo $t_blank_line;
print_day_option_list( $t_date[2] );
echo '</select>' . "\n";
}
if( strcasecmp( $t_char, 'Y' ) == 0 ) {
echo '<select class="' . $p_input_css . '" ' . helper_get_tab_index() . ' name="' . $p_name . '_year"' . $t_disable . '>';
echo $t_blank_line;
print_year_range_option_list( $t_date[0], $p_year_start, $p_year_end );
echo '</select>' . "\n";
}
}
}