mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-24 04:10:33 +00:00
57 lines
1 KiB
PHP
57 lines
1 KiB
PHP
<?php
|
|
|
|
echo <<<end
|
|
|
|
<a href='/site/common'>Summary</a>
|
|
<a href='/site/admin'>Coins</a>
|
|
<a href='/site/exchange'>Exchange</a>
|
|
<a href='/site/user'>Users</a>
|
|
<a href='/site/worker'>Workers</a>
|
|
<a href='/site/version'>Version</a>
|
|
<a href='/site/earning'>Earnings</a>
|
|
<a href='/site/payments'>Payments</a>
|
|
<a href='/site/monsters'>Big Miners</a>
|
|
<a href='/site/emptymarkets'>EmptyMarket</a>
|
|
|
|
<div id='main_results'></div>
|
|
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
|
|
<script>
|
|
|
|
var main_delay = 30000;
|
|
|
|
$(function()
|
|
{
|
|
main_refresh();
|
|
});
|
|
|
|
function main_ready(data)
|
|
{
|
|
$('#main_results').html(data);
|
|
setTimeout(main_refresh, main_delay);
|
|
}
|
|
|
|
function main_error()
|
|
{
|
|
setTimeout(main_refresh, main_delay*2);
|
|
}
|
|
|
|
function main_refresh()
|
|
{
|
|
var url = "/site/connections_results";
|
|
$.get(url, '', main_ready).error(main_error);
|
|
}
|
|
|
|
</script>
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|