diff --git a/classes/LBRY_Admin.php b/classes/LBRY_Admin.php
index 826d8c7..92d0f58 100644
--- a/classes/LBRY_Admin.php
+++ b/classes/LBRY_Admin.php
@@ -104,6 +104,7 @@ class LBRY_Admin
/**
+
* Speech Admin Page settings
*/
@@ -212,6 +213,13 @@ class LBRY_Admin
{
print 'This is where you can configure how LBRYPress will distribute your content:';
}
+/**
+ * Section info for the Speech Channel Section
+ */
+ public function speech_section_callback()
+ {
+ print 'If you have a Spee.ch account, you can enter your account details here, if you don\'t already have a Spee.ch account, no need to enter anything here.';
+ }
/**
* Section info for the Available Channel(s) Section
@@ -231,7 +239,6 @@ class LBRY_Admin
',
+ LBRY_SPEECH,
+ LBRY_SPEECH_SETTINGS,
+ isset( $options[LBRY_SPEECH] ) ? $options[LBRY_SPEECH] : '',
+ );
+ }
+
+ /**
+ * Prints Spee.ch channel input
+ */
+ public function speech_channel_callback()
+ {
+ $options = get_option( LBRY_SPEECH_SETTINGS );
+ printf(
+ '',
+ LBRY_SPEECH_CHANNEL,
+ LBRY_SPEECH_SETTINGS,
+ isset( $options[LBRY_SPEECH_CHANNEL] ) ? $options[LBRY_SPEECH_CHANNEL] : '',
+ );
+ }
+
+ /**
+ * Prints Spee.ch password input
+ */
+ public function speech_pw_callback()
+ {
+ printf(
+ '',
+ LBRY_SPEECH_PW,
+ LBRY_SPEECH_SETTINGS,
+ );
+ }
+
+
/**
* Channels Page
* Channels page uses admin.php so we are able to use the admin-post action instead of options.php