| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/prosvasi/wp-content/plugins/wp-statistics/assets/dev/javascript/ |
Upload File : |
/* Start Wp-statistics Admin Js */
var wps_js = {};
var _htmlEscapeMap = {'&': '&', '<': '<', '>': '>', '"': '"', "'": '''};
wps_js.escapeHtml = function (str) {
if (typeof str !== 'string') return str == null ? '' : String(str);
return str.replace(/[&<>"']/g, function (c) { return _htmlEscapeMap[c]; });
};
/* Get WP Statistics global Data From Frontend */
wps_js.global = (typeof wps_global != 'undefined') ? wps_global : [];
/* WordPress Global Lang */
wps_js._ = function (key) {
return (key in this.global.i18n ? this.global.i18n[key] : '');
};
/* Check Active Option */
wps_js.is_active = function (option) {
return wps_js.global.options[option] === 1;
};