454 lines
23 KiB
PHP
454 lines
23 KiB
PHP
<?PHP
|
|
ini_set('session.cookie_httponly', 1);
|
|
ini_set('session.use_strict_mode', 1);
|
|
if(in_array('sha512', hash_algos())) {
|
|
ini_set('session.hash_function', 'sha512');
|
|
}
|
|
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") {
|
|
ini_set('session.cookie_secure', 1);
|
|
if(!headers_sent()) {
|
|
header("Strict-Transport-Security: max-age=31536000; includeSubDomains; preload;");
|
|
}
|
|
}
|
|
session_start();
|
|
|
|
require_once('../other/config.php');
|
|
require_once('../other/session.php');
|
|
require_once('../other/load_addons_config.php');
|
|
|
|
$addons_config = load_addons_config($mysqlcon,$lang,$cfg,$dbname);
|
|
|
|
if(is_dir(substr(__DIR__,0,-5).'languages/')) {
|
|
foreach(scandir(substr(__DIR__,0,-5).'languages/') as $file) {
|
|
if ('.' === $file || '..' === $file || is_dir($file)) continue;
|
|
$sep_lang = preg_split("/[._]/", $file);
|
|
if(isset($sep_lang[0]) && $sep_lang[0] == 'nations' && isset($sep_lang[1]) && strlen($sep_lang[1]) == 2 && isset($sep_lang[2]) && strtolower($sep_lang[2]) == 'php') {
|
|
if(strtolower($cfg['default_language']) == strtolower($sep_lang[1])) {
|
|
require_once('../languages/nations_'.$sep_lang[1].'.php');
|
|
$required_nations = 1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if(!isset($required_nations)) {
|
|
require_once('../languages/nations_en.php');
|
|
}
|
|
}
|
|
|
|
function getclientip() {
|
|
if (!empty($_SERVER['HTTP_CLIENT_IP']))
|
|
return $_SERVER['HTTP_CLIENT_IP'];
|
|
elseif(!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
|
|
return $_SERVER['HTTP_X_FORWARDED_FOR'];
|
|
elseif(!empty($_SERVER['HTTP_X_FORWARDED']))
|
|
return $_SERVER['HTTP_X_FORWARDED'];
|
|
elseif(!empty($_SERVER['HTTP_FORWARDED_FOR']))
|
|
return $_SERVER['HTTP_FORWARDED_FOR'];
|
|
elseif(!empty($_SERVER['HTTP_FORWARDED']))
|
|
return $_SERVER['HTTP_FORWARDED'];
|
|
elseif(!empty($_SERVER['REMOTE_ADDR']))
|
|
return $_SERVER['REMOTE_ADDR'];
|
|
else
|
|
return false;
|
|
}
|
|
|
|
if(!isset($_SESSION[$rspathhex.'tsuid'])) {
|
|
set_session_ts3($mysqlcon,$cfg,$lang,$dbname);
|
|
}
|
|
|
|
if(isset($_POST['username'])) {
|
|
$_GET["search"] = $_POST['usersuche'];
|
|
$_GET["seite"] = 1;
|
|
}
|
|
$filter = $searchstring = NULL;
|
|
if(isset($_GET["search"]) && $_GET["search"] != '') {
|
|
$getstring = htmlspecialchars($_GET['search']);
|
|
}
|
|
if(isset($getstring) && strstr($getstring, 'filter:excepted:')) {
|
|
if(str_replace('filter:excepted:','',$getstring)!='') {
|
|
$searchstring = str_replace('filter:excepted:','',$getstring);
|
|
}
|
|
$filter .= " AND `except` IN ('2','3')";
|
|
} elseif(isset($getstring) && strstr($getstring, 'filter:nonexcepted:')) {
|
|
if(str_replace('filter:nonexcepted:','',$getstring)!='') {
|
|
$searchstring = str_replace('filter:nonexcepted:','',$getstring);
|
|
}
|
|
$filter .= " AND `except` IN ('0','1')";
|
|
} else {
|
|
if(isset($getstring)) {
|
|
$searchstring = $getstring;
|
|
} else {
|
|
$searchstring = '';
|
|
}
|
|
if($cfg['stats_show_excepted_clients_switch'] == 0) {
|
|
$filter .= " AND `except` IN ('0','1')";
|
|
}
|
|
}
|
|
if(isset($getstring) && strstr($getstring, 'filter:online:')) {
|
|
$searchstring = preg_replace('/filter\:online\:/','',$searchstring);
|
|
$filter .= " AND `online`='1'";
|
|
} elseif(isset($getstring) && strstr($getstring, 'filter:nononline:')) {
|
|
$searchstring = preg_replace('/filter\:nononline\:/','',$searchstring);
|
|
$filter .= " AND `online`='0'";
|
|
}
|
|
if(isset($getstring) && strstr($getstring, 'filter:actualgroup:')) {
|
|
preg_match('/filter\:actualgroup\:(.*)\:/',$searchstring,$grpvalue);
|
|
$searchstring = preg_replace('/filter\:actualgroup\:(.*)\:/','',$searchstring);
|
|
$filter .= " AND `grpid`='".$grpvalue[1]."'";
|
|
}
|
|
if(isset($getstring) && strstr($getstring, 'filter:country:')) {
|
|
preg_match('/filter\:country\:(.*)\:/',$searchstring,$grpvalue);
|
|
$searchstring = preg_replace('/filter\:country\:(.*)\:/','',$searchstring);
|
|
$filter .= " AND `nation`='".$grpvalue[1]."'";
|
|
}
|
|
if(isset($getstring) && strstr($getstring, 'filter:lastseen:')) {
|
|
preg_match('/filter\:lastseen\:(.*)\:(.*)\:/',$searchstring,$seenvalue);
|
|
$searchstring = preg_replace('/filter\:lastseen\:(.*)\:(.*)\:/','',$searchstring);
|
|
if(isset($seenvalue[2]) && is_numeric($seenvalue[2])) {
|
|
$lastseen = $seenvalue[2];
|
|
} elseif(isset($seenvalue[2])) {
|
|
$r = date_parse_from_format("Y-m-d H-i",$seenvalue[2]);
|
|
$lastseen = mktime($r['hour'], $r['minute'], $r['second'], $r['month'], $r['day'], $r['year']);
|
|
} else {
|
|
$lastseen = 0;
|
|
}
|
|
if(isset($seenvalue[1]) && ($seenvalue[1] == '<' || $seenvalue[1] == '<')) {
|
|
$operator = '<';
|
|
} elseif(isset($seenvalue[1]) && ($seenvalue[1] == '>' || $seenvalue[1] == '>')) {
|
|
$operator = '>';
|
|
} elseif(isset($seenvalue[1]) && $seenvalue[1] == '!=') {
|
|
$operator = '!=';
|
|
} else {
|
|
$operator = '=';
|
|
}
|
|
$filter .= " AND `lastseen`".$operator."'".$lastseen."'";
|
|
}
|
|
$searchstring = htmlspecialchars_decode($searchstring);
|
|
|
|
if(isset($getstring)) {
|
|
$dbdata_full = $mysqlcon->prepare("SELECT COUNT(*) FROM `$dbname`.`user` WHERE (`uuid` LIKE :searchvalue OR `cldbid` LIKE :searchvalue OR `name` LIKE :searchvalue)$filter");
|
|
$dbdata_full->bindValue(':searchvalue', '%'.$searchstring.'%', PDO::PARAM_STR);
|
|
$dbdata_full->execute();
|
|
$sumentries = $dbdata_full->fetch(PDO::FETCH_NUM);
|
|
$getstring = rawurlencode($getstring);
|
|
} else {
|
|
$getstring = '';
|
|
$sumentries = $mysqlcon->query("SELECT COUNT(*) FROM `$dbname`.`user`")->fetch(PDO::FETCH_NUM);
|
|
}
|
|
|
|
if(!isset($_GET["seite"])) {
|
|
$seite = 1;
|
|
} else {
|
|
$_GET["seite"] = preg_replace('/\D/', '', $_GET["seite"]);
|
|
if($_GET["seite"] > 0) {
|
|
$seite = $_GET["seite"];
|
|
} else {
|
|
$seite = 1;
|
|
}
|
|
}
|
|
$adminlogin = 0;
|
|
$sortarr = array_flip(array("name","uuid","cldbid","rank","lastseen","count","idle","active","grpid","grpsince","nextup"));
|
|
|
|
if(isset($_GET['sort']) && isset($sortarr[$_GET['sort']])) {
|
|
$keysort = $_GET['sort'];
|
|
} else {
|
|
$keysort = $cfg['stats_column_default_sort'];
|
|
}
|
|
if(isset($_GET['order']) && $_GET['order'] == 'desc') {
|
|
$keyorder = 'desc';
|
|
} elseif(isset($_GET['order']) && $_GET['order'] == 'asc') {
|
|
$keyorder = 'asc';
|
|
} else {
|
|
$keyorder = $cfg['stats_column_default_order'];
|
|
}
|
|
|
|
if(isset($_GET['admin'])) {
|
|
if($_SESSION[$rspathhex.'username'] == $cfg['webinterface_user'] && $_SESSION[$rspathhex.'password'] == $cfg['webinterface_pass'] && $_SESSION[$rspathhex.'clientip'] == getclientip()) {
|
|
$adminlogin = 1;
|
|
}
|
|
}
|
|
require_once('nav.php');
|
|
|
|
$countentries = 0;
|
|
|
|
if(!isset($_GET["user"])) {
|
|
$user_pro_seite = 25;
|
|
} elseif($_GET['user'] == "all") {
|
|
$user_pro_seite = $sumentries[0];
|
|
} else {
|
|
$_GET["user"] = preg_replace('/\D/', '', $_GET["user"]);
|
|
if($_GET["user"] > 0) {
|
|
$user_pro_seite = $_GET["user"];
|
|
} else {
|
|
$user_pro_seite = 25;
|
|
}
|
|
}
|
|
|
|
$start = ($seite * $user_pro_seite) - $user_pro_seite;
|
|
|
|
if ($keysort == 'active' && $keyorder == 'asc') {
|
|
$dbdata = $mysqlcon->prepare("SELECT * FROM `$dbname`.`user` WHERE (`uuid` LIKE :searchvalue OR `cldbid` LIKE :searchvalue OR `name` LIKE :searchvalue)$filter ORDER BY (`count` - `idle`) LIMIT :start, :userproseite");
|
|
$dbdata->bindValue(':searchvalue', '%'.$searchstring.'%', PDO::PARAM_STR);
|
|
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
|
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
|
$dbdata->execute();
|
|
} elseif ($keysort == 'active' && $keyorder == 'desc') {
|
|
$dbdata = $mysqlcon->prepare("SELECT * FROM `$dbname`.`user` WHERE (`uuid` LIKE :searchvalue OR `cldbid` LIKE :searchvalue OR `name` LIKE :searchvalue)$filter ORDER BY (`idle` - `count`) LIMIT :start, :userproseite");
|
|
$dbdata->bindValue(':searchvalue', '%'.$searchstring.'%', PDO::PARAM_STR);
|
|
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
|
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
|
$dbdata->execute();
|
|
} elseif ($searchstring == '') {
|
|
$dbdata = $mysqlcon->prepare("SELECT * FROM `$dbname`.`user` WHERE 1=1$filter ORDER BY `$keysort` $keyorder LIMIT :start, :userproseite");
|
|
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
|
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
|
$dbdata->execute();
|
|
} else {
|
|
$dbdata = $mysqlcon->prepare("SELECT * FROM `$dbname`.`user` WHERE (`uuid` LIKE :searchvalue OR `cldbid` LIKE :searchvalue OR `name` LIKE :searchvalue)$filter ORDER BY `$keysort` $keyorder LIMIT :start, :userproseite");
|
|
$dbdata->bindValue(':searchvalue', '%'.$searchstring.'%', PDO::PARAM_STR);
|
|
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
|
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
|
$dbdata->execute();
|
|
}
|
|
|
|
if($user_pro_seite > 0) {
|
|
$seiten_anzahl_gerundet = ceil($sumentries[0] / $user_pro_seite);
|
|
} else {
|
|
$seiten_anzahl_gerundet = 0;
|
|
}
|
|
|
|
if(($sqlhisgroup = $mysqlcon->query("SELECT * FROM `$dbname`.`groups`")->fetchAll(PDO::FETCH_ASSOC|PDO::FETCH_UNIQUE)) === false) {
|
|
$err_msg = print_r($mysqlcon->errorInfo(), true); $err_lvl = 3;
|
|
}
|
|
|
|
function pagination($keysort,$keyorder,$user_pro_seite,$seiten_anzahl_gerundet,$seite,$getstring) {
|
|
?>
|
|
<nav>
|
|
<div class="text-center">
|
|
<ul class="pagination">
|
|
<li>
|
|
<a href="<?PHP echo '?sort='.$keysort.'&order='.$keyorder.'&seite=1&user='.$user_pro_seite.'&search='.$getstring; ?>" aria-label="backward">
|
|
<span aria-hidden="true"><span class="fas fa-caret-square-left" aria-hidden="true"></span> </span>
|
|
</a>
|
|
</li>
|
|
<?PHP
|
|
for($a=0; $a < $seiten_anzahl_gerundet; $a++) {
|
|
$b = $a + 1;
|
|
if($seite == $b) {
|
|
echo '<li class="active"><a href="">'.$b.'</a></li>';
|
|
} elseif ($b > $seite - 5 && $b < $seite + 5) {
|
|
echo '<li><a href="?sort='.$keysort.'&order='.$keyorder.'&seite='.$b.'&user='.$user_pro_seite.'&search='.$getstring.'">'.$b.'</a></li>';
|
|
}
|
|
}
|
|
?>
|
|
<li>
|
|
<a href="<?PHP echo '?sort='.$keysort.'&order='.$keyorder.'&seite='.$seiten_anzahl_gerundet.'&user='.$user_pro_seite.'&search='.$getstring; ?>" aria-label="forward">
|
|
<span aria-hidden="true"> <span class="fas fa-caret-square-right" aria-hidden="true"></span></span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
<?PHP
|
|
}
|
|
$sqlhis = $dbdata->fetchAll(PDO::FETCH_ASSOC|PDO::FETCH_UNIQUE);
|
|
|
|
if($adminlogin == 1) {
|
|
switch ($keyorder) {
|
|
case "asc":
|
|
$keyorder2 = "desc&admin=true";
|
|
break;
|
|
case "desc":
|
|
$keyorder2 = "asc&admin=true";
|
|
}
|
|
$keyorder .= "&admin=true";
|
|
} else {
|
|
switch ($keyorder) {
|
|
case "asc":
|
|
$keyorder2 = "desc";
|
|
break;
|
|
case "desc":
|
|
$keyorder2 = "asc";
|
|
}
|
|
}
|
|
?>
|
|
<div id="page-wrapper">
|
|
<?PHP if(isset($err_msg)) error_handling($err_msg, $err_lvl); ?>
|
|
<div class="container-fluid">
|
|
<?PHP
|
|
if($user_pro_seite == "all" || $cfg['stats_show_site_navigation_switch'] == 0) {
|
|
} else {
|
|
pagination($keysort,$keyorder,$user_pro_seite,$seiten_anzahl_gerundet,$seite,$getstring);
|
|
}
|
|
?>
|
|
<table class="table table-striped">
|
|
<thead data-spy="affix" data-offset-top="100">
|
|
<tr>
|
|
<?PHP
|
|
if ($cfg['stats_column_rank_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=rank&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listrank'] , '</span></a></th>';
|
|
if ($cfg['stats_column_client_name_switch'] == 1 || $adminlogin == 1)
|
|
echo ($keysort == 'name') ? '<th class="text-center"><a href="?sort=name&order=' . $keyorder2 . '&seite=' . $seite . '&user=' . $user_pro_seite . '&search=' . $getstring . '"><span class="hdcolor">' . $lang['listnick'] . '</span></a></th>' : '<th class="text-center"><a href="?sort=name&order=' . $keyorder2 . '&seite=' . $seite . '&user=' . $user_pro_seite . '&search=' . $getstring . '"><span class="hdcolor">' . $lang['listnick'] . '</span></a></th>';
|
|
if ($cfg['stats_column_unique_id_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=uuid&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listuid'] , '</span></a></th>';
|
|
if ($cfg['stats_column_client_db_id_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=cldbid&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listcldbid'] , '</span></a></th>';
|
|
if ($cfg['stats_column_last_seen_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=lastseen&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listseen'] , '</span></a></th>';
|
|
if ($cfg['stats_column_nation_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=nation&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listnat'] , '</span></a></th>';
|
|
if ($cfg['stats_column_version_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=version&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listver'] , '</span></a></th>';
|
|
if ($cfg['stats_column_platform_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=platform&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listpla'] , '</span></a></th>';
|
|
if ($cfg['stats_column_online_time_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=count&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listsumo'] , '</span></a></th>';
|
|
if ($cfg['stats_column_idle_time_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=idle&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listsumi'] , '</span></a></th>';
|
|
if ($cfg['stats_column_active_time_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=active&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listsuma'] , '</span></a></th>';
|
|
if ($cfg['stats_column_current_server_group_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=grpid&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listacsg'] , '</span></a></th>';
|
|
if ($cfg['stats_column_current_group_since_switch'] == 1 || $adminlogin == 1)
|
|
echo '<th class="text-center"><a href="?sort=grpsince&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listgrps'] , '</span></a></th>';
|
|
if ($cfg['stats_column_next_rankup_switch'] == 1 || $adminlogin == 1)
|
|
echo ($keysort == 'nextup') ? '<th class="text-center"><a href="?sort=nextup&order=' . $keyorder2 . '&seite=' . $seite . '&user=' . $user_pro_seite . '&search=' . $getstring . '"><span class="hdcolor">' . $lang['listnxup'] . '</span></a></th>' : '<th class="text-center"><a href="?sort=nextup&order=' . $keyorder2 . '&seite=' . $seite . '&user=' . $user_pro_seite . '&search=' . $getstring . '"><span class="hdcolor">' . $lang['listnxup'] . '</span></a></th>';
|
|
if (($cfg['stats_column_next_server_group_switch'] == 1 || $adminlogin == 1) && $cfg['rankup_time_assess_mode'] == 1) {
|
|
echo '<th class="text-center"><a href="?sort=active&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listnxsg'] , '</span></a></th>';
|
|
} elseif (($cfg['stats_column_next_server_group_switch'] == 1 || $adminlogin == 1) && $cfg['rankup_time_assess_mode'] != 1) {
|
|
echo '<th class="text-center"><a href="?sort=count&order=' , $keyorder2 , '&seite=' , $seite , '&user=' , $user_pro_seite , '&search=' , $getstring , '"><span class="hdcolor">' , $lang['listnxsg'] , '</span></a></th>';
|
|
}
|
|
echo '</tr></thead><tbody>';
|
|
ksort($cfg['rankup_definition']);
|
|
if (count($sqlhis) > 0) {
|
|
foreach ($sqlhis as $uuid => $value) {
|
|
if ($cfg['rankup_time_assess_mode'] == 1) {
|
|
$activetime = $value['count'] - $value['idle'];
|
|
} else {
|
|
$activetime = $value['count'];
|
|
}
|
|
$grpcount=0;
|
|
foreach ($cfg['rankup_definition'] as $time => $groupid) {
|
|
$grpcount++;
|
|
if ($activetime < $time || $grpcount == count($cfg['rankup_definition']) && $value['nextup'] <= 0 && $cfg['stats_show_clients_in_highest_rank_switch'] == 1 || $grpcount == count($cfg['rankup_definition']) && $value['nextup'] == 0 && $adminlogin == 1) {
|
|
echo '<tr>';
|
|
if ($cfg['stats_column_rank_switch'] == 1 || $adminlogin == 1) {
|
|
if($value['except'] == 2 || $value['except'] == 3) {
|
|
echo '<td class="text-center"></td>';
|
|
} else {
|
|
echo '<td class="text-center">' , $value['rank'] , '</td>';
|
|
}
|
|
}
|
|
if ($adminlogin == 1) {
|
|
echo '<td class="text-center"><a href="//tsviewer.com/index.php?page=search&action=ausgabe_user&nickname=' , htmlspecialchars($value['name']) , '" target="_blank">' , htmlspecialchars($value['name']) , '</a></td>';
|
|
} elseif ($cfg['stats_column_client_name_switch'] == 1) {
|
|
echo '<td class="text-center">' , htmlspecialchars($value['name']) , '</td>';
|
|
}
|
|
if ($adminlogin == 1) {
|
|
echo '<td class="text-center"><a href="//ts3index.com/?page=searchclient&uid=' , $uuid , '" target="_blank">' , $uuid , '</a></td>';
|
|
} elseif ($cfg['stats_column_unique_id_switch'] == 1) {
|
|
echo '<td class="text-center">' , $uuid , '</td>';
|
|
}
|
|
if ($cfg['stats_column_client_db_id_switch'] == 1 || $adminlogin == 1)
|
|
echo '<td class="text-center">' , $value['cldbid'] , '</td>';
|
|
if ($cfg['stats_column_last_seen_switch'] == 1 || $adminlogin == 1) {
|
|
if ($value['online'] == 1) {
|
|
echo '<td class="text-center text-success">online</td>';
|
|
} else {
|
|
echo '<td class="text-center">' , date('Y-m-d H:i:s',$value['lastseen']), '</td>';
|
|
}
|
|
}
|
|
if ($cfg['stats_column_nation_switch'] == 1 || $adminlogin == 1) {
|
|
if(strtoupper($value['nation']) == 'XX') {
|
|
echo '<td class="text-center"><i class="fas fa-question-circle" title="' , $lang['unknown'] , '"></i></td>';
|
|
} else {
|
|
echo '<td class="text-center"><span class="flag-icon flag-icon-' , strtolower(htmlspecialchars($value['nation'])) , '" title="' , $nation[$value['nation']] , '"></span></td>';
|
|
}
|
|
}
|
|
if ($cfg['stats_column_version_switch'] == 1 || $adminlogin == 1) {
|
|
echo '<td class="text-center">' , htmlspecialchars($value['version']) , '</td>';
|
|
}
|
|
if ($cfg['stats_column_platform_switch'] == 1 || $adminlogin == 1) {
|
|
echo '<td class="text-center">' , htmlspecialchars($value['platform']) , '</td>';
|
|
}
|
|
if ($cfg['stats_column_online_time_switch'] == 1 || $adminlogin == 1) {
|
|
echo '<td class="text-center">';
|
|
$dtF = new DateTime("@0");
|
|
$dtT = new DateTime("@".round($value['count']));
|
|
echo $dtF->diff($dtT)->format($cfg['default_date_format']);
|
|
}
|
|
if ($cfg['stats_column_idle_time_switch'] == 1 || $adminlogin == 1) {
|
|
echo '<td class="text-center">';
|
|
$dtF = new DateTime("@0");
|
|
$dtT = new DateTime("@".round($value['idle']));
|
|
echo $dtF->diff($dtT)->format($cfg['default_date_format']);
|
|
}
|
|
if ($cfg['stats_column_active_time_switch'] == 1 || $adminlogin == 1) {
|
|
echo '<td class="text-center">';
|
|
$dtF = new DateTime("@0");
|
|
$dtT = new DateTime("@".(round($value['count'])-round($value['idle'])));
|
|
echo $dtF->diff($dtT)->format($cfg['default_date_format']);
|
|
}
|
|
if ($cfg['stats_column_current_server_group_switch'] == 1 || $adminlogin == 1) {
|
|
if ($value['grpid'] == 0) {
|
|
echo '<td class="text-center"></td>';
|
|
} elseif(isset($sqlhisgroup[$value['grpid']]) && $sqlhisgroup[$value['grpid']]['iconid'] != 0) {
|
|
echo '<td class="text-center"><img src="../tsicons/',$sqlhisgroup[$value['grpid']]['iconid'],'.',$sqlhisgroup[$value['grpid']]['ext'],'" width="16" height="16" alt="groupicon"> ' , $sqlhisgroup[$value['grpid']]['sgidname'] , '</td>';
|
|
} elseif(isset($sqlhisgroup[$value['grpid']])) {
|
|
echo '<td class="text-center">' , $sqlhisgroup[$value['grpid']]['sgidname'] , '</td>';
|
|
} else {
|
|
echo '<td class="text-center"><i>',$lang['unknown'],'</i></td>';
|
|
}
|
|
}
|
|
if ($cfg['stats_column_current_group_since_switch'] == 1 || $adminlogin == 1) {
|
|
if ($value['grpsince'] == 0) {
|
|
echo '<td class="text-center"></td>';
|
|
} else {
|
|
echo '<td class="text-center">' , date('Y-m-d H:i:s',$value['grpsince']), '</td>';
|
|
}
|
|
}
|
|
if ($cfg['stats_column_next_rankup_switch'] == 1 || $adminlogin == 1) {
|
|
echo '<td class="text-center">';
|
|
if (($value['except'] == 0 || $value['except'] == 1) && $value['nextup'] > 0) {
|
|
$dtF = new DateTime("@0");
|
|
$dtT = new DateTime("@".$value['nextup']);
|
|
echo $dtF->diff($dtT)->format($cfg['default_date_format']) , '</td>';
|
|
} elseif ($value['except'] == 0 || $value['except'] == 1) {
|
|
echo '0</td>';
|
|
} elseif ($value['except'] == 2 || $value['except'] == 3) {
|
|
echo '0</td>';
|
|
} else {
|
|
echo $lang['errukwn'], '</td>';
|
|
}
|
|
}
|
|
if ($cfg['stats_column_next_server_group_switch'] == 1 || $adminlogin == 1) {
|
|
if ($grpcount == count($cfg['rankup_definition']) && $value['nextup'] == 0 && $cfg['stats_show_clients_in_highest_rank_switch'] == 1 || $grpcount == count($cfg['rankup_definition']) && $value['nextup'] == 0 && $adminlogin == 1) {
|
|
echo '<td class="text-center"><em>',$lang['highest'],'</em></td>';
|
|
} elseif ($value['except'] == 2 || $value['except'] == 3) {
|
|
echo '<td class="text-center"><em>',$lang['listexcept'],'</em></td>';
|
|
} elseif (isset($sqlhisgroup[$groupid]) && $sqlhisgroup[$groupid]['iconid'] != 0) {
|
|
echo '<td class="text-center"><img src="../tsicons/',$sqlhisgroup[$groupid]['iconid'],'.',$sqlhisgroup[$groupid]['ext'],'" width="16" height="16" alt="missed_icon"> ' , $sqlhisgroup[$groupid]['sgidname'] , '</td>';
|
|
} elseif (isset($sqlhisgroup[$groupid])) {
|
|
echo '<td class="text-center">' , $sqlhisgroup[$groupid]['sgidname'] , '</td>';
|
|
} else {
|
|
echo '<td class="text-center"></td>';
|
|
}
|
|
}
|
|
echo '</tr>';
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
echo '<tr><td colspan="6">' , $lang['noentry'] , '</td></tr>';
|
|
}
|
|
echo '</tbody></table>';
|
|
if($user_pro_seite != "all") {
|
|
pagination($keysort,$keyorder,$user_pro_seite,$seiten_anzahl_gerundet,$seite,$getstring);
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|