**Describe the bug** A clear and concise description of what the bug is. Please be as descriptive as possible; issues lacking detail, or for any other reason than to report a bug, may be closed without action. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Screenshots** If applicable, add screenshots to help explain your problem. **Expected behavior** A clear and concise description of what you expected to happen. **Isolating the problem (mark completed items with an [x]):** - [ ] I have deactivated other plugins and confirmed this bug occurs when only WooCommerce plugin is active. - [ ] This bug happens with a default WordPress theme active, or [Storefront](https://woocommerce.com/storefront/). - [ ] I can reproduce this bug consistently using the steps above. **WordPress Environment**
``` Copy and paste the system status report from **WooCommerce > System Status** in WordPress admin. ```
' ) ) { /* translators: %s: plugin latest version */ $version_string = sprintf( esc_html__( '%s is available', 'woocommerce-beta-tester' ), $plugin['version_latest'] ); } if ( false !== (bool) $plugin['network_activated'] ) { $network_string = __( 'Network enabled', 'woocommerce-beta-tester' ); } } $untested_string = ''; if ( array_key_exists( $plugin['plugin'], $untested_plugins ) ) { $untested_string = __( 'Not tested with the active version of WooCommerce', 'woocommerce-beta-tester' ); } $plugins_info .= sprintf( __( "%1\$s: by %2\$s - %3\$s - %4\$s\n", 'woocommerce-beta-tester' ), $plugin_name, $plugin['author_name'], $plugin['version'], $version_string . $untested_string . $network_string ); } } return $plugins_info; } /** * Constructs a WC System Status Report. * * @return string */ protected function construct_ssr() { $transient_name = 'wc-beta-tester-ssr'; $ssr = get_transient( $transient_name ); if ( false === $ssr ) { if( ! did_action( 'rest_api_init' ) ) { WC()->api->rest_api_includes(); } if ( ! class_exists( 'WC_REST_System_Status_Controller', false ) ) { return ''; } // Get SSR. $api = new WC_REST_System_Status_Controller(); $schema = $api->get_item_schema(); $mappings = $api->get_item_mappings(); $response = array(); foreach ( $mappings as $section => $values ) { foreach ( $values as $key => $value ) { if ( isset( $schema['properties'][ $section ]['properties'][ $key ]['type'] ) ) { settype( $values[ $key ], $schema['properties'][ $section ]['properties'][ $key ]['type'] ); } } settype( $values, $schema['properties'][ $section ]['type'] ); $response[ $section ] = $values; } $ssr = ''; foreach ( $response['environment'] as $key => $value ) { $index = $key; // @todo remove this hack after fix schema in WooCommerce, and Claudio never let you folks forget that need to write schema first, and review after every change, schema is the most important part of the REST API. if ( 'version' === $index ) { $index = 'wc_version'; } elseif ( 'external_object_cache' === $index ) { $ssr .= sprintf( "%s: %s\n", 'External object cache', wc_bool_to_string( $value ) ); continue; } if ( is_bool( $value ) ) { $value = wc_bool_to_string( $value ); } $ssr .= sprintf( "%s: %s\n", $schema['properties']['environment']['properties'][ $index ]['description'], $value ); } $active_plugins = $api->get_active_plugins(); $plugin_updates = new WC_Plugin_Updates(); $untested_plugins = $plugin_updates->get_untested_plugins( WC()->version, 'minor' ); $ssr .= $this->get_plugins_ssr_info( $active_plugins, $untested_plugins ); $theme = $api->get_theme_info(); $ssr .= $this->get_theme_ssr_info( $theme ); set_transient( $transient_name, $ssr, DAY_IN_SECONDS ); } return $ssr; } /** * Get URL for creating a GitHub ticket. * * @return string */ protected function get_github_ticket_url() { $bug_tpl = $this->get_ticket_template(); $ssr = $this->construct_ssr(); $body = str_replace( 'Copy and paste the system status report from **WooCommerce > System Status** in WordPress admin.', $ssr, $bug_tpl ); $body = str_replace( '```', '', $body ); // Remove since this break how is displayed. $wc_plugin_data = get_plugin_data( WC_PLUGIN_FILE ); if ( isset( $wc_plugin_data['Version'] ) ) { $version = $wc_plugin_data['Version']; } else { $version = '-'; } return add_query_arg( array( 'body' => rawurlencode( $body ), /* translators: %s: woocommerce version */ 'title' => rawurlencode( sprintf( __( '[WC Beta Tester] Bug report for version "%s"', 'woocommerce-beta-tester' ), $version ) ), ), 'https://github.com/woocommerce/woocommerce/issues/new' ); } /** * Add the "Visit Store" link in admin bar main menu. * * @param WP_Admin_Bar $wp_admin_bar Admin bar instance. */ public function admin_bar_menus( $wp_admin_bar ) { if ( ! is_admin() || ! is_user_logged_in() ) { return; } // Show only when the user is a member of this site, or they're a super admin. if ( ! is_user_member_of_blog() && ! is_super_admin() ) { return; } // Add the beta tester root node. $wp_admin_bar->add_node( array( 'parent' => 0, 'id' => 'wc-beta-tester', 'title' => __( 'WC Beta Tester', 'woocommerce-beta-tester' ), ) ); $settings = WC_Beta_Tester::get_settings(); switch ( $settings->channel ) { case 'beta': $current_channel = __( 'Beta', 'woocommerce-beta-tester' ); break; case 'rc': $current_channel = __( 'Release Candidate', 'woocommerce-beta-tester' ); break; default: $current_channel = __( 'Stable', 'woocommerce-beta-tester' ); break; } $nodes = array( array( 'parent' => 'wc-beta-tester', 'id' => 'update-channel', /* translators: %s: current channel */ 'title' => sprintf( __( 'Channel: %s', 'woocommerce-beta-tester' ), $current_channel ), 'href' => admin_url( 'plugins.php?page=wc-beta-tester' ), ), array( 'parent' => 'wc-beta-tester', 'id' => 'show-version-info', /* translators: %s: current version */ 'title' => sprintf( __( 'Release %s information', 'woocommerce-beta-tester' ), WC_VERSION ), 'href' => '#', ), array( 'parent' => 'wc-beta-tester', 'id' => 'switch-version', 'title' => __( 'Switch versions', 'woocommerce-beta-tester' ), 'href' => admin_url( 'plugins.php?page=wc-beta-tester-version-picker' ), ), array( 'parent' => 'wc-beta-tester', 'id' => 'submit-gh-ticket', 'title' => __( 'Submit bug report', 'woocommerce-beta-tester' ), 'href' => '#', 'meta' => array( // We can't simply use the href here since WP core calls esc_url on it which strips some parts. 'onclick' => 'javascript:window.open( "' . esc_js( $this->get_github_ticket_url() ) . '" );', ), ), ); foreach ( $nodes as $node ) { $wp_admin_bar->add_node( $node ); } } /** * Template for version information. */ public function version_information_template() { ?>