mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-20 18:09:54 +00:00
65 lines
No EOL
1.8 KiB
PHP
65 lines
No EOL
1.8 KiB
PHP
<?php
|
|
|
|
echo getAdminSideBarLinks();
|
|
|
|
echo <<<end
|
|
<div align="right" style="margin-top: -14px; margin-bottom: 6px;">
|
|
<input class="search" type="search" data-column="all" style="width: 140px;" placeholder="Search..." />
|
|
</div>
|
|
<style type="text/css">
|
|
tr.ssrow.filtered { display: none; }
|
|
</style>
|
|
end;
|
|
|
|
showTableSorter('maintable', "{
|
|
tableClass: 'dataGrid',
|
|
headers: { 0: { sorter: false} },
|
|
widgets: ['zebra','filter'],
|
|
widgetOptions: {
|
|
filter_external: '.search',
|
|
filter_columnFilters: false,
|
|
filter_childRows : true,
|
|
filter_ignoreCase: true
|
|
}
|
|
}");
|
|
|
|
echo "<thead>";
|
|
echo "<tr>";
|
|
echo "<th></th>";
|
|
echo "<th>Coin</th>";
|
|
echo "<th>Market</th>";
|
|
echo "<th>Price</th>";
|
|
echo "<th>Message</th>";
|
|
echo "<th>Deposit Address</th>";
|
|
echo "</tr>";
|
|
echo "</thead><tbody>";
|
|
|
|
$list = dbolist("SELECT coins.id as coinid, markets.id as marketid FROM markets
|
|
LEFT JOIN coins ON coins.id=markets.coinid
|
|
WHERE coins.installed AND coins.enable AND
|
|
(markets.deposit_address IS NULL OR (markets.message is not null and markets.message!=''))
|
|
ORDER BY coins.id DESC, markets.id DESC");
|
|
|
|
if (!empty($list))
|
|
foreach($list as $item)
|
|
{
|
|
$coin = getdbo('db_coins', $item['coinid']);
|
|
$market = getdbo('db_markets', $item['marketid']);
|
|
|
|
$coinimg = CHtml::image($coin->image, $coin->symbol, array('width'=>'16'));
|
|
|
|
echo "<tr class='ssrow'>";
|
|
echo "<td width=16>{$coinimg}</td>";
|
|
echo "<td><a href='/site/coin?id=$coin->id'>$coin->name</a></td>";
|
|
echo "<td>$market->name</td>";
|
|
echo "<td>".bitcoinvaluetoa($market->price)."</td>";
|
|
echo "<td>$market->message</td>";
|
|
echo "<td>$market->deposit_address</td>";
|
|
echo "</tr>";
|
|
}
|
|
|
|
echo "</tbody></table>";
|
|
|
|
echo '<br><br><br><br><br><br><br><br><br><br>';
|
|
|
|
echo 'Note: this table displays the enabled coin markets which does not have a deposit address (or have a message set)'; |