| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/nextcloud/apps/logreader/js/ |
Upload File : |
/*
* PHP => moment.js
*
* http://www.php.net/manual/en/function.date.php
* http://momentjs.com/docs/#/displaying/format/
* https://gist.github.com/NTICompass/9375143
*/
const formatMap = {
d: 'DD',
D: 'ddd',
j: 'D',
l: 'dddd',
N: 'E',
w: 'd',
W: 'W',
F: 'MMMM',
m: 'MM',
M: 'MMM',
n: 'M',
o: 'GGGG',
Y: 'YYYY',
y: 'YY',
a: 'a',
A: 'A',
g: 'h',
G: 'H',
h: 'hh',
H: 'HH',
i: 'mm',
s: 'ss',
u: '[u]', // not sure if moment has this
e: '[e]', // moment does not have this
O: 'ZZ',
P: 'Z',
T: '\T', // deprecated in moment
c: 'YYYY-MM-DD[T]HH:mm:ssZ',
r: 'ddd, DD MMM YYYY HH:mm:ss ZZ',
U: 'X'
};
const formatEx = /[dDjlNSwzWFmMntLoYyaABgGhHisueIOPTZcrU]/g;
export function convertDateFormat (format) {
return format.replace(formatEx, (phpStr) => {
return typeof formatMap[phpStr] === 'function' ? formatMap[phpStr]() : formatMap[phpStr];
});
}