-
Notifications
You must be signed in to change notification settings - Fork 27
/
date-time-picker-v3.php
523 lines (456 loc) · 17.4 KB
/
date-time-picker-v3.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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
<?php
class ACFFieldDateTimePicker extends acf_Field {
// vars
var $settings // will hold info such as dir / path
, $defaults // will hold default field options
, $domain; // holds the language domain
/*--------------------------------------------------------------------------------------
*
* Constructor
* - This function is called when the field class is initalized on each page.
* - Here you can add filters / actions and setup any other functionality for your field
*
* @author Elliot Condon
* @since 2.2.0
*
*-------------------------------------------------------------------------------------*/
function __construct( $parent ) {
// do not delete!
parent::__construct( $parent );
// set name / title
$this->name = 'date_time_picker';
$this->title = __( 'Date and Time Picker' );
$this->defaults = array(
'label' => __( 'Choose Time', 'acf-field-date-time-picker' ),
'time_format' => 'hh:mm',
'show_date' => 'true',
'date_format' => 'yy-mm-dd',
'show_week_number' => 'false',
'picker' => 'slider',
'save_as_timestamp' => 'true',
'get_as_timestamp' => 'false',
);
$this->settings = array(
'path' => $this->helpers_get_path( __FILE__ ),
'dir' => $this->helpers_get_dir( __FILE__ ),
'version' => ACFFIELDDATETIMEPICKER_VERSION,
);
}
/*
* helpers_get_path
*
* @description: calculates the path (works for plugin / theme folders)
* @since: 3.6
* @created: 30/01/13
*/
function helpers_get_path( $file ) {
return trailingslashit( dirname( $file ) );
}
/*
* helpers_get_dir
*
* @description: calculates the directory (works for plugin / theme folders)
* @since: 3.6
* @created: 30/01/13
*/
function helpers_get_dir( $file ) {
$dir = trailingslashit( dirname( $file ) );
$count = 0;
// sanitize for Win32 installs
$dir = str_replace( '\\', '/', $dir );
// if file is in plugins folder
$wp_plugin_dir = str_replace( '\\', '/', WP_PLUGIN_DIR );
$dir = str_replace( $wp_plugin_dir, WP_PLUGIN_URL, $dir, $count );
if ( $count < 1 ) {
// if file is in wp-content folder
$wp_content_dir = str_replace( '\\', '/', WP_CONTENT_DIR );
$dir = str_replace( $wp_content_dir, WP_CONTENT_URL, $dir, $count );
}
if ( $count < 1 ) {
// if file is in ??? folder
$wp_dir = str_replace( '\\', '/', ABSPATH );
$dir = str_replace( $wp_dir, site_url( '/' ), $dir );
}
return $dir;
}
/*--------------------------------------------------------------------------------------
*
* create_options
* - this function is called from core/field_meta_box.php to create extra options
* for your field
*
* @params
* - $key (int) - the $_POST obejct key required to save the options to the field
* - $field (array) - the field object
*
* @author Elliot Condon
* @since 2.2.0
*
*-------------------------------------------------------------------------------------*/
function create_options( $key, $field ) {
$field = array_merge( $this->defaults, $field );
?>
<tr class="field_option field_option_<?php echo $this->name; ?> timepicker_choice">
<td class="label">
<label for=""><?php _e( 'Date and Time Picker?', 'acf-field-date-time-picker' ); ?></label>
</td>
<td>
<?php
$this->parent->create_field(array(
'type' => 'radio',
'name' => 'fields[' . $key . '][show_date]',
'value' => $field['show_date'],
'layout' => 'horizontal',
'choices' => array(
'true' => __( 'Date and Time Picker', 'acf-field-date-time-picker' ),
'false' => __( 'Time Picker', 'acf-field-date-time-picker' ),
),
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?> timepicker_dateformat">
<td class="label">
<label><?php _e( 'Date Format', 'acf-field-date-time-picker' ); ?></label>
<p class="description"><?php _e( 'eg. mm/dd/yy. read more about', 'acf-field-date-time-picker' ); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate">formatDate</a></p>
</td>
<td>
<?php
$this->parent->create_field(array(
'type' => 'text',
'name' => 'fields[' . $key . '][date_format]',
'value' => $field['date_format'],
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?> timepicker_timeformat">
<td class="label">
<label><?php _e( 'Time Format', 'acf-field-date-time-picker' ); ?></label>
<p class="description"><?php printf( __( 'eg. hh:mm. read more about <a href="%s" target="_blank">formatting time</a>', 'acf-field-date-time-picker' ), 'http://trentrichardson.com/examples/timepicker/#tp-formatting' ); ?></p>
</td>
<td>
<?php
$this->parent->create_field(array(
'type' => 'text',
'name' => 'fields[' . $key . '][time_format]',
'value' => $field['time_format'],
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?> timepicker_week_number">
<td class="label">
<label for=""><?php _e( 'Display Week Number?', 'acf-field-date-time-picker' ); ?></label>
</td>
<td>
<?php
$this->parent->create_field(array(
'type' => 'radio',
'name' => 'fields[' . $key . '][show_week_number]',
'value' => $field['show_week_number'],
'layout' => 'horizontal',
'choices' => array(
'true' => __( 'Yes', 'acf-field-date-time-picker' ),
'false' => __( 'No', 'acf-field-date-time-picker' ),
),
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?> timepicker_week_number">
<td class="label">
<label for=""><?php _e( 'Time Picker Style?', 'acf-field-date-time-picker' ); ?></label>
</td>
<td>
<?php
$this->parent->create_field(array(
'type' => 'radio',
'name' => 'fields[' . $key . '][picker]',
'value' => $field['picker'],
'layout' => 'horizontal',
'choices' => array(
'slider' => __( 'Slider', 'acf-field-date-time-picker' ),
'select' => __( 'Dropdown', 'acf-field-date-time-picker' ),
),
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?> timepicker_week_number">
<td class="label">
<label for=""><?php _e( 'Save as timestamp?', 'acf-field-date-time-picker' ); ?></label>
<p class="description"><?php printf( __( 'Most users should leave this untouched, only set it to "No" if you need a date and time format not supported by <a href="%s" target="_blank">strtotime</a>', 'acf-field-date-time-picker' ), 'http://php.net/manual/en/function.strtotime.php' ); ?></p>
</td>
<td>
<?php
$this->parent->create_field(array(
'type' => 'radio',
'name' => 'fields[' . $key . '][save_as_timestamp]',
'value' => $field['save_as_timestamp'],
'layout' => 'horizontal',
'choices' => array(
'true' => __( 'Yes', 'acf-field-date-time-picker' ),
'false' => __( 'No', 'acf-field-date-time-picker' ),
),
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?> timepicker_week_number">
<td class="label">
<label for=""><?php _e( 'Get field as a timestamp?', 'acf-field-date-time-picker' ); ?></label>
<p class="description"><?php printf( __( 'Most users should leave this untouched, only set it to "Yes" if you need get the date and time field as a timestamp using <a href="%1$s" target="_blank">the_field()</a> or <a href="%2$s" target="_blank">get_field()</a> ', 'acf-field-date-time-picker' ), 'http://www.advancedcustomfields.com/resources/functions/the_field/',
'http://www.advancedcustomfields.com/resources/functions/get_field/'); ?></p>
</td>
<td>
<?php
$this->parent->create_field(array(
'type' => 'radio',
'name' => 'fields[' . $key . '][get_as_timestamp]',
'value' => $field['get_as_timestamp'],
'layout' => 'horizontal',
'choices' => array(
'true' => __( 'Yes', 'acf-field-date-time-picker' ),
'false' => __( 'No', 'acf-field-date-time-picker' ),
),
));
?>
</td>
</tr>
<?php
}
/*--------------------------------------------------------------------------------------
*
* create_field
* - this function is called on edit screens to produce the html for this field
*
* @author Elliot Condon
* @since 2.2.0
*
*-------------------------------------------------------------------------------------*/
function create_field( $field ) {
$field = array_merge( $this->defaults, $field );
if ( true != $field['show_date'] ) {
echo '<input type="text" value="' . $field['value'] . '" name="' . $field['name'] . '" class="ps_timepicker" value="" data-picker="' . $field['picker'] . '" data-time_format="' . $field['time_format'] . '" title="' . $field['label'] . '" />';
} else {
echo '<input type="text" value="' . $field['value'] . '" name="' . $field['name'] . '" class="ps_timepicker" value="" data-picker="' . $field['picker'] . '" data-date_format="' . $field['date_format'] . '" data-time_format="' . $field['time_format'] . '" data-show_week_number="' . $field['show_week_number'] . '" title="' . $field['label'] . '" />';
}
}
/*--------------------------------------------------------------------------------------
*
* update_value
* - this function is called when saving a post object that your field is assigned to.
* the function will pass through the 3 parameters for you to use.
*
* @params
* - $post_id (int) - usefull if you need to save extra data or manipulate the current
* post object
* - $field (array) - usefull if you need to manipulate the $value based on a field option
* - $value (mixed) - the new value of your field.
*
* @author Elliot Condon
* @since 2.2.0
*
*-------------------------------------------------------------------------------------*/
function update_value( $post_id, $field, $value ) {
$field = array_merge( $this->defaults, $field );
if ( '' != $value && 'true' == $field['save_as_timestamp'] ) {
if ( preg_match( '/^dd?\//', $field['date_format'] ) ) { //if start with dd/ or d/ (not supported by strtotime())
$value = str_replace( '/', '-', $value );
}
$value = strtotime( $value );
}
parent::update_value( $post_id, $field, $value );
}
/*--------------------------------------------------------------------------------------
*
* get_value
* - called from the edit page to get the value of your field. This function is useful
* if your field needs to collect extra data for your create_field() function.
*
* @params
* - $post_id (int) - the post ID which your value is attached to
* - $field (array) - the field object.
*
* @author Elliot Condon
* @since 2.2.0
*
*-------------------------------------------------------------------------------------*/
function get_value( $post_id, $field ) {
$field = array_merge( $this->defaults, $field );
$value = parent::get_value( $post_id, $field );
if ( '' != $value && 'true' == $field['save_as_timestamp'] && $this->isValidTimeStamp( $value ) ) {
if ( 'true' == $field['show_date'] ) {
$value = date( sprintf( '%s %s', $this->js_to_php_dateformat( $field['date_format'] ), $this->js_to_php_timeformat( $field['time_format'] ) ), $value );
} else {
$value = date( sprintf( '%s', $this->js_to_php_timeformat( $field['time_format'] ) ), $value );
}
}
return $value;
}
function get_value_for_api( $post_id, $field ) {
$field = array_merge( $this->defaults, $field );
$value = parent::get_value( $post_id, $field );
if ( '' != $value && 'true' == $field['save_as_timestamp'] && 'true' != $field['get_as_timestamp'] && $this->isValidTimeStamp( $value ) ) {
if ( 'true' == $field['show_date'] ) {
$value = date( sprintf( '%s %s', $this->js_to_php_dateformat( $field['date_format'] ), $this->js_to_php_timeformat( $field['time_format'] ) ), $value );
} else {
$value = date( sprintf( '%s', $this->js_to_php_timeformat( $field['time_format'] ) ), $value );
}
}
return $value;
}
function js_to_php_dateformat( $date_format ) {
$chars = array(
// Day
'dd' => 'd',
'd' => 'j',
'DD' => 'l',
'D' => 'D',
'o' => 'z',
// Month
'mm' => 'm',
'm' => 'n',
'MM' => 'F',
'M' => 'M',
// Year
'yy' => 'Y',
'y' => 'y',
);
return strtr( (string) $date_format, $chars );
}
function js_to_php_timeformat( $time_format ) {
$chars = array(
//hour
'HH' => 'H',
'H' => 'G',
'hh' => 'h',
'h' => 'g',
//minute
'mm' => 'i',
'm' => 'i',
//second
'ss' => 's',
's' => 's',
//am/pm
'TT' => 'A',
'T' => 'A',
'tt' => 'a',
't' => 'a',
);
return strtr( (string) $time_format, $chars );
}
function isValidTimeStamp( $timestamp ) {
return ( (string) (int) $timestamp === (string) $timestamp );
}
/*--------------------------------------------------------------------------------------
*
* admin_print_scripts / admin_print_styles
* - this function is called in the admin_print_scripts / admin_print_styles where
* your field is created. Use this function to register css and javascript to assist
* your create_field() function.
*
* @author Elliot Condon
* @since 3.0.0
*
*-------------------------------------------------------------------------------------*/
function admin_print_scripts() {
global $wp_locale;
$has_locale = false;
$js_locale = $this->get_js_locale( get_locale() );
wp_enqueue_script('jquery-ui-timepicker', $this->settings['dir'] . 'js/jquery-ui-timepicker-addon.js', array(
'acf-datepicker',
'jquery-ui-slider',
), $this->settings['version'], true);
if ( file_exists( dirname( __FILE__ ) . '/js/localization/jquery-ui-timepicker-' . $js_locale . '.js' ) ) {
wp_enqueue_script('timepicker-localization', $this->settings['dir'] . 'js/localization/jquery-ui-timepicker-' . $js_locale . '.js', array(
'jquery-ui-timepicker'
), $this->settings['version'], true);
wp_enqueue_script('timepicker', $this->settings['dir'] . 'js/timepicker.js', array(
'timepicker-localization'
), $this->settings['version'], true);
$has_locale = true;
} else {
wp_enqueue_script('timepicker', $this->settings['dir'] . 'js/timepicker.js', array(
'jquery-ui-timepicker'
), $this->settings['version'], true);
}
if ( ! $has_locale && 'en' != $js_locale ) {
$timepicker_locale = array(
'closeText' => __( 'Done', 'acf-field-date-time-picker' ),
'currentText' => __( 'Today', 'acf-field-date-time-picker' ),
'prevText' => __( 'Prev', 'acf-field-date-time-picker' ),
'nextText' => __( 'Next', 'acf-field-date-time-picker' ),
'monthStatus' => __( 'Show a different month', 'acf-field-date-time-picker' ),
'weekHeader' => __( 'Wk', 'acf-field-date-time-picker' ),
'timeText' => __( 'Time', 'acf-field-date-time-picker' ),
'hourText' => __( 'Hour', 'acf-field-date-time-picker' ),
'minuteText' => __( 'Minute', 'acf-field-date-time-picker' ),
'secondText' => __( 'Second', 'acf-field-date-time-picker' ),
'millisecText' => __( 'Millisecond', 'acf-field-date-time-picker' ),
'timezoneText' => __( 'Time Zone', 'acf-field-date-time-picker' ),
'isRTL' => $wp_locale->is_rtl(),
);
}
$timepicker_wp_locale = array(
'monthNames' => $this->strip_array_indices( $wp_locale->month ),
'monthNamesShort' => $this->strip_array_indices( $wp_locale->month_abbrev ),
'dayNames' => $this->strip_array_indices( $wp_locale->weekday ),
'dayNamesShort' => $this->strip_array_indices( $wp_locale->weekday_abbrev ),
'dayNamesMin' => $this->strip_array_indices( $wp_locale->weekday_initial ),
'showMonthAfterYear' => false,
'showWeek' => false,
'firstDay' => get_option( 'start_of_week' ),
);
$l10n = (isset( $timepicker_locale )) ? array_merge( $timepicker_wp_locale, $timepicker_locale ) : $timepicker_wp_locale;
wp_localize_script( 'timepicker', 'timepicker_objectL10n', $l10n );
}
/**
* helper function, see: http://www.renegadetechconsulting.com/tutorials/jquery-datepicker-and-wordpress-i18n
* @param array $ArrayToStrip
* @return array
*/
function strip_array_indices( $array_to_strip ) {
foreach ( $array_to_strip as $obj_array_item ) {
$new_array[] = $obj_array_item;
}
return $new_array;
}
function get_js_locale( $locale ) {
$dir_path = $this->settings['path'] . 'js/localization/';
$exclude_list = array( '.', '..' );
$languages = $this->ps_preg_filter( '/jquery-ui-timepicker-(.*?)\.js/', '$1', array_diff( scandir( $dir_path ), $exclude_list ) );
$locale = strtolower( str_replace( '_', '-', $locale ) );
if ( false !== strpos( $locale, '-' ) ) {
$l = explode( '-', $locale );
switch ( $l[0] ) {
case 'en':
case 'fr':
case 'de':
$pattern = array( '/' . $l[0] . '/' );
break;
default:
$pattern = array( '/' . $l[1] . '/' );
break;
}
} else {
$pattern = array( '/' . $locale . '/' );
}
$res = $this->ps_preg_filter( $pattern, '$0', $languages, -1, $count );
return ($count) ? implode( '', $res ) : 'en';
}
function ps_preg_filter( $pattern, $replace, $subject, $limit = -1, &$count = 0 ) {
if ( function_exists( 'preg_filter' ) ) {
return preg_filter( $pattern, $replace, $subject, $limit, $count );
} else {
return array_diff( preg_replace( $pattern, $replace, $subject, $limit, $count ), $subject );
}
}
function admin_print_styles() {
wp_enqueue_style( 'jquery-style', $this->settings['dir'] . 'css/jquery-ui.css' );
wp_enqueue_style('timepicker', $this->settings['dir'] . 'css/jquery-ui-timepicker-addon.css', array(
'jquery-style'
), $this->settings['version']);
}
}