You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.3 KiB
70 lines
1.3 KiB
<?php |
|
# |
|
function allusersort($a, $b) |
|
{ |
|
$cmp = $a['u_hashrate5m'] != $b['u_hashrate5m']; |
|
if ($cmp != 0) |
|
return $cmp; |
|
return $a['userid'] - $b['userid']; |
|
} |
|
# |
|
function dostats($data, $user) |
|
{ |
|
$pg = '<h1>Pool Stats</h1>'; |
|
|
|
$rep = getAllUsers(); |
|
$ans = repDecode($rep); |
|
|
|
$pg .= "<table callpadding=0 cellspacing=0 border=0>\n"; |
|
$pg .= "<tr class=title>"; |
|
$pg .= "<td class=dl>Username</td>"; |
|
$pg .= "<td class=dr>Hash Rate 5m</td>"; |
|
$pg .= "</tr>\n"; |
|
if ($ans['STATUS'] == 'ok') |
|
{ |
|
$all = array(); |
|
$count = $ans['rows']; |
|
for ($i = 0; $i < $count; $i++) |
|
{ |
|
$all[] = array('username' => $ans['username'.$i], |
|
'userid' => $ans['userid'.$i], |
|
'u_hashrate5m' => $ans['u_hashrate5m'.$i]); |
|
} |
|
|
|
usort($all, 'allusersort'); |
|
|
|
for ($i = 0; $i < $count; $i++) |
|
{ |
|
if (($i % 2) == 0) |
|
$row = 'even'; |
|
else |
|
$row = 'odd'; |
|
|
|
$pg .= "<tr class=$row>"; |
|
$pg .= '<td class=dl>'.$all[$i]['username'].'</td>'; |
|
$uhr = $all[$i]['u_hashrate5m']; |
|
if ($uhr == '?') |
|
$uhr = '?GHs'; |
|
else |
|
{ |
|
$uhr /= 10000000; |
|
if ($uhr < 100000) |
|
$uhr = (round($uhr)/100).'GHs'; |
|
else |
|
$uhr = (round($uhr/1000)/100).'THs'; |
|
} |
|
$pg .= "<td class=dr>$uhr</td>"; |
|
$pg .= "</tr>\n"; |
|
} |
|
} |
|
$pg .= "</table>\n"; |
|
|
|
return $pg; |
|
} |
|
# |
|
function show_stats($menu, $name, $user) |
|
{ |
|
gopage(NULL, 'dostats', $menu, $name, $user); |
|
} |
|
# |
|
?>
|
|
|