mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?
|
|
if (!check_perms('admin_donor_log')) {
|
|
error(403);
|
|
}
|
|
$Title = "Bitcoin Donation Balance";
|
|
View::show_header($Title);
|
|
|
|
$Balance = DonationsBitcoin::get_balance() . ' BTC';
|
|
$BitcoinAddresses = DonationsBitcoin::get_received();
|
|
$Debug->log_var($BitcoinAddresses, 'Bitcoin addresses');
|
|
|
|
$UserQ = $DB->query("
|
|
SELECT i.UserID, i.BitcoinAddress
|
|
FROM users_info AS i
|
|
JOIN users_main AS m ON m.ID = i.UserID
|
|
WHERE BitcoinAddress != ''
|
|
ORDER BY m.Username ASC");
|
|
?>
|
|
<div class="header">
|
|
<h2><?=$Title?></h2>
|
|
</div>
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h3><?=$Balance?></h3>
|
|
</div>
|
|
<table>
|
|
<tr class="colhead">
|
|
<th>Username</th>
|
|
<th>Receiving Bitcoin Address</th>
|
|
<th>Amount</th>
|
|
</tr>
|
|
<?
|
|
while (list($UserID, $BitcoinAddress) = $DB->next_record(MYSQLI_NUM, false)) {
|
|
if (!isset($BitcoinAddresses[$BitcoinAddress])) {
|
|
continue;
|
|
}
|
|
?>
|
|
<tr>
|
|
<td><?=Users::format_username($UserID, true, false, false, false)?></td>
|
|
<td><tt><?=$BitcoinAddress?></tt></td>
|
|
<td><?=$BitcoinAddresses[$BitcoinAddress]?> BTC</td>
|
|
</tr>
|
|
<?
|
|
$DB->set_query_id($UserQ);
|
|
}
|
|
?>
|
|
</table>
|
|
</div>
|
|
<? View::show_footer(); ?>
|