Passing calls from options page to channel new
This commit is contained in:
parent
6cc2bf8800
commit
41b3c58d41
3 changed files with 15 additions and 5 deletions
|
@ -192,7 +192,7 @@ class LBRY_Admin
|
||||||
$bid_amount = $_POST['bid_amount'];
|
$bid_amount = $_POST['bid_amount'];
|
||||||
|
|
||||||
// TODO: Wrap in a try catch
|
// TODO: Wrap in a try catch
|
||||||
LBRY()->daemon->channel_new($new_channel, $bid_amount);
|
$result = LBRY()->daemon->channel_new($new_channel, $bid_amount);
|
||||||
LBRY()->notice->set_notice('success', 'Successfully added a new channel!', true);
|
LBRY()->notice->set_notice('success', 'Successfully added a new channel!', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,12 +41,12 @@ class LBRY_Daemon
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* https://lbryio.github.io/lbry/#channel_list
|
* https://lbryio.github.io/lbry/#channel_list
|
||||||
* @return array claim dictionary
|
* @return array claim dictionary or null if empty
|
||||||
*/
|
*/
|
||||||
public function channel_list()
|
public function channel_list()
|
||||||
{
|
{
|
||||||
$result = $this->request('channel_list');
|
$result = json_decode($this->request('channel_list'))->result;
|
||||||
return null;
|
return empty($result) ? null : $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -55,6 +55,14 @@ class LBRY_Daemon
|
||||||
*/
|
*/
|
||||||
public function channel_new($channel_name, $bid_amount)
|
public function channel_new($channel_name, $bid_amount)
|
||||||
{
|
{
|
||||||
|
$result = $this->request(
|
||||||
|
'channel_new',
|
||||||
|
array(
|
||||||
|
'channel_name' => $channel_name,
|
||||||
|
'amount' => $bid_amount
|
||||||
|
)
|
||||||
|
);
|
||||||
|
error_log($result);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,9 @@ $channel_list = $LBRY->daemon->channel_list();
|
||||||
|
|
||||||
<h2>Your Publishable Channels</h2>
|
<h2>Your Publishable Channels</h2>
|
||||||
<?php if ($channel_list): ?>
|
<?php if ($channel_list): ?>
|
||||||
|
<?php foreach ($channel as $key => $value): ?>
|
||||||
|
|
||||||
|
<?php endforeach; ?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<p>Looks like you haven't added any channels yet, feel free to do so below:</p>
|
<p>Looks like you haven't added any channels yet, feel free to do so below:</p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
Loading…
Reference in a new issue