diff --git a/admin/css/lbry-admin.css b/admin/css/lbry-admin.css index 6419836..ed40079 100644 --- a/admin/css/lbry-admin.css +++ b/admin/css/lbry-admin.css @@ -8,7 +8,7 @@ margin-right: .5em; margin-bottom: -.5em; } - + .bid-icon-lbc { height: 1.2em; margin-bottom: -.2em; diff --git a/admin/images/speech-tab.jpg b/admin/images/speech-tab.jpg new file mode 100644 index 0000000..fb62d8a Binary files /dev/null and b/admin/images/speech-tab.jpg differ diff --git a/classes/LBRYPress.php b/classes/LBRYPress.php index 2220953..3924077 100644 --- a/classes/LBRYPress.php +++ b/classes/LBRYPress.php @@ -108,7 +108,7 @@ class LBRYPress $this->define('LBRY_VERSION', $this->version); // Library Options Names - $this->define('LBRY_SETTINGS_GROUP', 'lbry_settings_group'); + //$this->define('LBRY_SETTINGS_GROUP', 'lbry_settings_group'); $this->define('LBRY_SETTINGS', 'lbry_settings'); $this->define('LBRY_SETTINGS_SECTION_GENERAL', 'lbry_settings_section_general'); $this->define('LBRY_ADMIN_PAGE', 'lbrypress'); diff --git a/classes/LBRY_Admin.php b/classes/LBRY_Admin.php index 51abfdf..e4a7fcb 100644 --- a/classes/LBRY_Admin.php +++ b/classes/LBRY_Admin.php @@ -208,7 +208,7 @@ class LBRY_Admin $license_array = LBRY()->licenses; if ( isset( $input[LBRY_LICENSE] ) && ( in_array( $input[LBRY_LICENSE], $license_array ) ) ) { $new_input[LBRY_LICENSE] = sanitize_text_field( $input[LBRY_LICENSE] ); - } + } if ( isset( $input[LBRY_LBC_PUBLISH] ) ) { $new_input[LBRY_LBC_PUBLISH] = number_format( floatval( $input[LBRY_LBC_PUBLISH] ), 3, '.', '' ); } @@ -290,7 +290,6 @@ class LBRY_Admin ); } - /** * Checkbox to default to always allow publish on LBRY */ @@ -305,7 +304,6 @@ class LBRY_Admin '
Set Default to always Publish to LBRY, this can be adjusted when publishing a New Post.
', 'lbry_default_publish_setting', LBRY_SETTINGS, - ); } @@ -365,7 +363,6 @@ class LBRY_Admin $options ); } - /** * Prints LBC per publish input @@ -424,9 +421,9 @@ class LBRY_Admin '', LBRY_SPEECH_PW, LBRY_SPEECH_SETTINGS, - ); + ); } - + /** * Handles new channel form submission */ diff --git a/classes/LBRY_Daemon.php b/classes/LBRY_Daemon.php index 26fd78e..08a1a23 100644 --- a/classes/LBRY_Daemon.php +++ b/classes/LBRY_Daemon.php @@ -33,8 +33,7 @@ class LBRY_Daemon * https://lbry.tech/api/sdk#address_unused * @return string Unused wallet address in base58 */ - public function wallet_unused_address() - { + public function wallet_unused_address() { try { $result = $this->request( 'address_unused' ); return $result->result; @@ -122,12 +121,12 @@ class LBRY_Daemon if ( strpos( $channel_name, '@' ) ) { throw new \Exception( 'Illegal character "@" in channel name', 1 ); } - + // No white space allowed if ( strpos( $channel_name, ' ' ) ) { throw new \Exception( "No spaces allowed in channel name", 1 ); } - + $channel_name = '@' . $channel_name; try { diff --git a/classes/LBRY_Network.php b/classes/LBRY_Network.php index 789d56a..4dab3b0 100644 --- a/classes/LBRY_Network.php +++ b/classes/LBRY_Network.php @@ -39,6 +39,7 @@ class LBRY_Network // Save the post meta on 'save_post' hook add_action( 'wp_insert_post', array( $this, 'save_post_meta' ), 11, 2 ); + // Checkbox inside the WordPres meta box near "Publish" button add_action( 'post_submitbox_misc_actions', array( $this, 'publish_to_lbry_checkbox' ) ); } diff --git a/uninstall.php b/uninstall.php index 2da5161..762418d 100644 --- a/uninstall.php +++ b/uninstall.php @@ -4,6 +4,7 @@ * * @package LBRYPress */ +defined('ABSPATH') || die(); // Exit if accessed directly // if uninstall.php is not called by WordPress, die defined('WP_UNINSTALL_PLUGIN') || die();