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.
46 lines
964 B
46 lines
964 B
10 years ago
|
<?php
|
||
|
#
|
||
|
function doblocks($data, $user)
|
||
|
{
|
||
|
$pg = '<h1>Blocks</h1>';
|
||
|
|
||
|
$rep = getBlocks($user);
|
||
|
$ans = repDecode($rep);
|
||
|
|
||
|
$pg .= "<table callpadding=0 cellspacing=0 border=0>\n";
|
||
|
$pg .= "<tr class=title>";
|
||
|
$pg .= "<td class=dl>Height</td>";
|
||
|
$pg .= "<td class=dl>Who</td>";
|
||
|
$pg .= "<td class=dr>Reward</td>";
|
||
|
$pg .= "<td class=dr>When</td>";
|
||
|
$pg .= "</tr>\n";
|
||
|
if ($ans['STATUS'] == 'ok')
|
||
|
{
|
||
|
$count = $ans['rows'];
|
||
|
for ($i = 0; $i < $count; $i++)
|
||
|
{
|
||
|
if (($i % 2) == 0)
|
||
|
$row = 'even';
|
||
|
else
|
||
|
$row = 'odd';
|
||
|
|
||
|
$pg .= "<tr class=$row>";
|
||
|
$pg .= '<td class=dl>'.$ans['height'.$i].'</td>';
|
||
|
$pg .= '<td class=dl>'.$ans['workername'.$i].'</td>';
|
||
|
$pg .= '<td class=dr>'.btcfmt($ans['reward'.$i]).'</td>';
|
||
|
$pg .= '<td class=dl>'.gmdate('Y-m-d H:i:s+00', $ans['createdate'.$i]).'</td>';
|
||
|
$pg .= "</tr>\n";
|
||
|
}
|
||
|
}
|
||
|
$pg .= "</table>\n";
|
||
|
|
||
|
return $pg;
|
||
|
}
|
||
|
#
|
||
|
function show_blocks($menu, $name, $user)
|
||
|
{
|
||
|
gopage(NULL, 'doblocks', $menu, $name, $user);
|
||
|
}
|
||
|
#
|
||
|
?>
|