%PDF- %PDF-
Direktori : /home/langpiergz/www/wp-content/plugins/wp-statistics/assets/dev/javascript/meta-box/ |
Current File : /home/langpiergz/www/wp-content/plugins/wp-statistics/assets/dev/javascript/meta-box/useronline.js |
wps_js.useronline_meta_box = { view: function (args = []) { let t = '<div class="o-table-wrapper">'; t += `<table class="o-table o-table--visitors"> <tr> <td>${wps_js._('page')}</td> <td>${wps_js._('referrer')}</td>` + (wps_js.is_active('geo_ip') ? `<td>${wps_js._('country')}</td>` : ``) + ` <td>${wps_js._('ip')}</td> <td>${wps_js._('user')}</td> </tr>`; args.forEach(function (value) { t += `<tr> <td><span class="wps-text-wrap">` + (value['page']['link'].length > 2 ? `<a href="${value['page']['link']}" title="${value['page']['title']}" target="_blank" class="wps-text-muted is-normal-text">` : ``) + value['page']['title'] + (value['page']['link'].length > 2 ? `</a>` : ``) + `</span></td> <td><div class="table-cell-scroller">${value['referred']}</div></td>` + (wps_js.is_active('geo_ip') ? `<td><img src='${value['country']['flag']}' alt='${value['country']['name']}' class='wps-flag wps-flag--first'/> ${value['country']['name']}</td>` : ``) + ` <td><a href='` + (value['hash_ip'] ? '#' : value['ip']['link']) + `'>` + (value['hash_ip'] ? value['hash_ip'] : value['ip']['value']) + `</a></td>` + (typeof value['user'] != 'undefined' ? `<td><a href='` + wps_js.global.admin_url + `user-edit.php?user_id=` + value['user']['ID'] + `'>` + value['user']['name'] + ` (ID: #` + value['user']['ID'] + `)</a></td>` : `-`) + `</tr>`; }); t += `</table></div>`; return t; } };