Source
45
45
* Formats date according given format. Uses server timezone.
46
46
* Supported formats: 'd M Y H:i', 'j. M Y G:i', 'Y/m/d H:i', 'Y-m-d H:i', 'Y-m-d H:i:s', 'Y-m-d h:i:s A',
47
47
* 'Y-m-d','H:i:s', 'H:i', 'M jS, Y h:i A', 'Y M d H:i', 'd.m.Y H:i' and 'd m Y H i'
48
48
* Format 'd m Y H i' is also accepted but used internally for date input fields.
49
49
*
50
50
* @param format PHP style date format limited to supported formats
51
51
*
52
52
* @return string|bool human readable date or false if unsupported format given
53
53
*/
54
54
format: function(format) {
55
-
var shortMn = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
56
-
57
-
var dt = this.getDate(),
58
-
mnth = this.getMonth(),
59
-
yr = this.getFullYear(),
60
-
hrs = this.getHours(),
61
-
mnts = this.getMinutes(),
62
-
sec = this.getSeconds();
63
-
64
-
if (format[format.length - 1] === 'A') {
65
-
var ampm = (hrs < 12) ? 'AM' : 'PM',
66
-
ampmhrs = appendZero((hrs + 11) % 12 + 1);
67
-
}
55
+
const shortMn = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
56
+
57
+
const dt = this.getDate();
58
+
const mnth = this.getMonth();
59
+
const yr = this.getFullYear();
60
+
const hrs = this.getHours();
61
+
const mnts = this.getMinutes();
62
+
const sec = this.getSeconds();
63
+
const ampm = (hrs < 12) ? 'AM' : 'PM';
64
+
const ampmhrs = appendZero((hrs + 11) % 12 + 1);
68
65
69
66
/**
70
67
* Append date suffix according to English rules e.g., 3 becomes 3rd.
71
68
*
72
69
* @param int date
73
70
*
74
71
* @return string
75
72
*/
76
-
var appSfx = function(date) {
73
+
const appSfx = function(date) {
77
74
if (date % 10 == 1 && date != 11) {
78
75
return date + 'st';
79
76
}
80
77
if (date % 10 == 2 && date != 12) {
81
78
return date + 'nd';
82
79
}
83
80
if (date % 10 == 3 && date != 13) {
84
81
return date + 'rd';
85
82
}
86
83
return date + 'th';