2018-09-01 03:14:12 +02:00
|
|
|
<?php
|
2018-09-11 22:10:15 +02:00
|
|
|
$LBRY = LBRY();
|
|
|
|
$wallet_balance = $LBRY->daemon->wallet_balance();
|
2018-09-13 01:39:13 +02:00
|
|
|
$channel_list = $LBRY->daemon->channel_list();
|
2018-09-01 03:14:12 +02:00
|
|
|
?>
|
2018-08-21 01:39:57 +02:00
|
|
|
<div class="wrap">
|
|
|
|
<h1><?= esc_html(get_admin_page_title()); ?></h1>
|
2018-09-01 03:14:12 +02:00
|
|
|
|
|
|
|
<h2>Your wallet amount:</h2>
|
|
|
|
<code><?= number_format($wallet_balance, 6, '.', ','); ?></code>
|
2018-09-13 01:39:13 +02:00
|
|
|
|
2018-08-21 01:39:57 +02:00
|
|
|
<form action="options.php" method="post">
|
|
|
|
<?php
|
2018-09-13 01:39:13 +02:00
|
|
|
settings_fields(LBRY_SETTINGS_GROUP);
|
|
|
|
do_settings_sections(LBRY_ADMIN_PAGE);
|
2018-08-21 01:39:57 +02:00
|
|
|
submit_button('Save Settings');
|
|
|
|
?>
|
|
|
|
</form>
|
2018-09-13 01:39:13 +02:00
|
|
|
|
|
|
|
<h2>Your Publishable Channels</h2>
|
|
|
|
<?php if ($channel_list): ?>
|
|
|
|
|
|
|
|
<?php else: ?>
|
|
|
|
<p>Looks like you haven't added any channels yet, feel free to do so below:</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<h2>Add a new channel to publish to:</h2>
|
|
|
|
<form action="" method="post">
|
|
|
|
<input type="text" name="new_channel" value="" placeholder="Your New Channel">
|
|
|
|
<?php submit_button('Add New Channel'); ?>
|
|
|
|
</form>
|
2018-08-21 01:39:57 +02:00
|
|
|
</div>
|