Workers'; $rep = getWorkers($user); $ans = repDecode($rep); $pg .= "\n"; $pg .= ""; $pg .= ""; $pg .= ""; $pg .= ""; $pg .= ""; $pg .= ""; $pg .= ""; $pg .= "\n"; if ($ans['STATUS'] == 'ok') { $count = $ans['rows']; for ($i = 0; $i < $count; $i++) { if (($i % 2) == 0) $row = 'even'; else $row = 'odd'; $pg .= ""; $pg .= ''; $pg .= ''; $nots = $ans['idlenotificationenabled'.$i]; switch ($nots) { case 'Y': case 'y': $nots = 'Y'; break; default: $nots = 'N'; } $pg .= ''; $pg .= ''; $lst = $ans['STAMP'] - $ans['w_lastshare'.$i]; if ($lst < 60) $lstdes = $lst.'s'; else { $lst = round($lst/60); if ($lst < 60) $lstdes = $lst.'m'; else { $lst = round($lst/60); if ($lst < 24) $lstdes = $lst.'hr'; else { $lst = round($lst/24); if ($lst < 9999) $lstdes = $lst.'days'; else $lstdes = 'never'; } } } $pg .= ""; if ($ans['w_elapsed'.$i] > 3600) $uhr = $ans['w_hashrate1hr'.$i]; else $uhr = $ans['w_hashrate5m'.$i]; if ($uhr == '?') $uhr = '?GHs'; else { $uhr /= 10000000; if ($uhr < 100000) $uhr = (round($uhr)/100).'GHs'; else $uhr = (round($uhr/1000)/100).'THs'; } $pg .= ""; $pg .= "\n"; } } $pg .= "
Worker NameDifficultyIdle NotificationsIdle Notification TimeLast ShareHash Rate
'.$ans['workername'.$i].''.$ans['difficultydefault'.$i].''.$nots.''.$ans['idlenotificationtime'.$i].'$lstdes$uhr
\n"; return $pg; } # function show_workers($menu, $name, $user) { gopage(NULL, 'doworkers', $menu, $name, $user); } # ?>