0byt3m1n1
Path:
C:
/
wamp64
/
apps
/
phpsysinfo3.3.1
/
plugins
/
uprecords
/
js
/
[
Home
]
File: uprecords_bootstrap.js
function renderPlugin_uprecords(data) { var directives = { hash: { html: function () { return this.hash; } }, Bootup: { html: function () { if (((datetimeFormat = data.Options["@attributes"].datetimeFormat) !== undefined) && (datetimeFormat.toLowerCase() === "locale")) { var bootup = new Date(this.Bootup); return bootup.toLocaleString(); } else { return this.Bootup; } } } }; if ((data.Plugins.Plugin_uprecords !== undefined) && (data.Plugins.Plugin_uprecords.Uprecords !== undefined)) { var upitems = items(data.Plugins.Plugin_uprecords.Uprecords.Item); if (upitems.length > 0) { var up_memory = []; up_memory.push_attrs(upitems); $('#uprecords-data').render(up_memory, directives); $('#block_uprecords').show(); } else { $('#block_uprecords').hide(); } } else { $('#block_uprecords').hide(); } }