__( 'General', 'easy-digital-downloads' ), 'api_keys' => __( 'API Keys', 'easy-digital-downloads' ), 'betas' => __( 'Beta Versions', 'easy-digital-downloads' ), 'logs' => __( 'Logs', 'easy-digital-downloads' ), 'system_info' => __( 'System Info', 'easy-digital-downloads' ), 'debug_log' => __( 'Debug Log', 'easy-digital-downloads' ), 'import_export' => __( 'Import/Export', 'easy-digital-downloads' ) ); // Unset the betas tab if not allowed if ( count( edd_get_beta_enabled_extensions() ) <= 0 ) { unset( $tabs['betas'] ); } } // Filter & return return apply_filters( 'edd_tools_tabs', $tabs ); } /** * Display the recount stats. * * @since 2.5 */ function edd_tools_recount_stats_display() { // Bail if the user does not have the required capabilities. if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } do_action( 'edd_tools_recount_stats_before' ); ?>


Deletes all payment records, customers, and related log entries.', 'easy-digital-downloads' ); ?>

prepare_items(); $api_keys_table->display(); $docs_link = edd_link_helper( 'https://easydigitaldownloads.com/categories/docs/api-reference/', array( 'utm_medium' => 'tools', 'utm_content' => 'api-documentation', ) ); $ios_link = edd_link_helper( 'https://easydigitaldownloads.com/downloads/ios-sales-earnings-tracker/', array( 'utm_medium' => 'tools', 'utm_content' => 'ios-app', ) ); ?>

EDD REST API to retrieve store data in JSON or XML for external applications or devices, such as the EDD mobile app.', 'easy-digital-downloads' ), $docs_link, $ios_link ); ?>

$product ) : ?>
value="1"/>
'Extension Name' * * @since 2.6.11 * * @return array $extensions The array of extensions */ function edd_get_beta_enabled_extensions() { return (array) apply_filters( 'edd_beta_enabled_extensions', array() ); } /** * Check if a given extensions has beta support enabled * * @since 2.6.11 * * @param string $slug The slug of the extension to check * * @return bool True if enabled, false otherwise */ function edd_extension_has_beta_support( $slug ) { $enabled_betas = edd_get_option( 'enabled_betas', array() ); $return = false; if ( array_key_exists( $slug, $enabled_betas ) ) { $return = true; } return $return; } /** * Save enabled betas. * * @since 2.6.11 */ function edd_tools_enabled_betas_save() { if ( ! wp_verify_nonce( $_POST['edd_save_betas_nonce'], 'edd_save_betas_nonce' ) ) { return; } if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } if ( ! empty( $_POST['enabled_betas'] ) ) { $enabled_betas = array_filter( array_map( 'edd_tools_enabled_betas_sanitize_value', $_POST['enabled_betas'] ) ); edd_update_option( 'enabled_betas', $enabled_betas ); } else { edd_delete_option( 'enabled_betas' ); } } add_action( 'edd_save_enabled_betas', 'edd_tools_enabled_betas_save' ); /** * Sanitize the supported beta values by making them booleans * * @since 2.6.11 * * @param mixed $value The value being sent in, determining if beta support is enabled. * * @return bool */ function edd_tools_enabled_betas_sanitize_value( $value ) { return filter_var( $value, FILTER_VALIDATE_BOOLEAN ); } /** * Save banned emails. * * @since 2.0 */ function edd_tools_banned_emails_save() { if ( ! wp_verify_nonce( $_POST['edd_banned_emails_nonce'], 'edd_banned_emails_nonce' ) ) { return; } if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } if ( ! empty( $_POST['banned_emails'] ) ) { // Sanitize the input $emails = array_map( 'trim', explode( "\n", $_POST['banned_emails'] ) ); $emails = array_unique( $emails ); $emails = array_map( 'sanitize_text_field', $emails ); foreach ( $emails as $id => $email ) { if ( ! is_email( $email ) && $email[0] != '@' && $email[0] != '.' ) { unset( $emails[ $id ] ); } } } else { $emails = ''; } edd_update_option( 'banned_emails', $emails ); } add_action( 'edd_save_banned_emails', 'edd_tools_banned_emails_save' ); /** * Execute upgrade notice clear. * * @since 2.3.5 */ function edd_tools_clear_upgrade_notice() { if ( ! wp_verify_nonce( $_POST['edd_clear_upgrades_nonce'], 'edd_clear_upgrades_nonce' ) ) { return; } if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } delete_option( 'edd_doing_upgrade' ); } add_action( 'edd_clear_doing_upgrade', 'edd_tools_clear_upgrade_notice' ); /** * Display the tools import/export tab. * * @since 2.0 */ function edd_tools_import_export_display() { if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } do_action( 'edd_tools_import_export_before' ); ?>

Reports page.', 'easy-digital-downloads' ), esc_url( edd_get_admin_url( array( 'page' => 'edd-reports', 'view' => 'export', ) ) ) ); ?>

$edd_settings, 'edd_tax_rates' => $edd_tax_rates ) ); } add_action( 'edd_export_settings', 'edd_tools_import_export_process_export' ); /** * Process a settings import from a json file * * @since 1.7 * @return void */ function edd_tools_import_export_process_import() { if ( empty( $_POST['edd_import_nonce'] ) ) { return; } if ( ! wp_verify_nonce( $_POST['edd_import_nonce'], 'edd_import_nonce' ) ) { return; } if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } if ( edd_get_file_extension( $_FILES['import_file']['name'] ) != 'json' ) { wp_die( __( 'Please upload a valid .json file', 'easy-digital-downloads' ), __( 'Error', 'easy-digital-downloads' ), array( 'response' => 400 ) ); } $import_file = $_FILES['import_file']['tmp_name']; if ( empty( $import_file ) ) { wp_die( __( 'Please upload a file to import', 'easy-digital-downloads' ), __( 'Error', 'easy-digital-downloads' ), array( 'response' => 400 ) ); } // Retrieve the settings from the file and convert the json object to an array $settings = edd_object_to_array( json_decode( file_get_contents( $import_file ) ) ); if ( ! isset( $settings['edd_settings'] ) ) { // Process a settings export from a pre 2.8 version of EDD update_option( 'edd_settings', $settings ); } else { // Update the settings from a 2.8+ export file $edd_settings = $settings['edd_settings']; update_option( 'edd_settings', $edd_settings ); $edd_tax_rates = $settings['edd_tax_rates']; if ( ! empty( $edd_tax_rates ) ) { foreach( $edd_tax_rates as $rate ) { $scope = 'country'; if ( ! empty( $rate['scope'] ) ) { $scope = $rate['scope']; } elseif ( empty( $rate['global'] ) && ! empty( $rate['state'] ) ) { $scope = 'region'; } elseif ( empty( $rate['country'] && empty( $rate['state'] ) ) ) { $scope = 'global'; } edd_add_tax_rate( array( 'name' => esc_attr( $rate['country'] ), 'status' => ! empty( $rate['status'] ) ? esc_attr( $rate['status'] ) : 'active', 'description' => esc_attr( $rate['state'] ), 'amount' => floatval( $rate['rate'] ), 'scope' => esc_attr( $scope ), ) ); } } } edd_redirect( edd_get_admin_url( array( 'page' => 'edd-tools', 'edd-message' => 'settings-imported', 'tab' => 'import_export', ) ) ); } add_action( 'edd_import_settings', 'edd_tools_import_export_process_import' ); /** * Display the debug log tab * * @since 2.8.7 */ function edd_tools_debug_log_display() { $edd_logs = EDD()->debug_log; // Setup fallback incase no file exists $path = $edd_logs->get_log_file_path(); $log = $edd_logs->get_file_contents(); $path_output = ! empty( $path ) ? wp_normalize_path( $path ) : esc_html__( 'No File', 'easy-digital-downloads' ); $log_output = ! empty( $log ) ? wp_normalize_path( $log ) : esc_html__( 'Log is Empty', 'easy-digital-downloads' ); ?>

Learn how to use EDD_Logging in your own code.)', 'easy-digital-downloads' ); ?>

"this.form['edd-debug-log-contents'].focus();this.form['edd-debug-log-contents'].select();document.execCommand('copy');return false;" ) ); // Only show the "Clear Log" button if there is a log to clear if ( ! empty( $log ) ) { submit_button( __( 'Clear Log', 'easy-digital-downloads' ), 'secondary edd-inline-button', 'edd-clear-debug-log', false ); } ?>

:

debug_log; if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } check_admin_referer( 'edd-debug-log-action' ); if ( isset( $_REQUEST['edd-download-debug-log'] ) ) { nocache_headers(); header( 'Content-Type: text/plain' ); header( 'Content-Disposition: attachment; filename="edd-debug-log.txt"' ); echo wp_strip_all_tags( $_REQUEST['edd-debug-log-contents'] ); exit; } elseif ( isset( $_REQUEST['edd-clear-debug-log'] ) ) { // Clear the debug log. $edd_logs->clear_log_file(); edd_redirect( edd_get_admin_url( array( 'page' => 'edd-tools', 'tab' => 'debug_log' ) ) ); } } add_action( 'edd_submit_debug_log', 'edd_handle_submit_debug_log' ); /** * Display the system info tab * * @since 2.0 */ function edd_tools_sysinfo_display() { if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } ?>

"this.form['edd-sysinfo'].focus();this.form['edd-sysinfo'].select();document.execCommand('copy');return false;" ) ); ?>

Name . ' ' . $theme_data->Version; $parent_theme = $theme_data->Template; if ( ! empty( $parent_theme ) ) { $parent_theme_data = wp_get_theme( $parent_theme ); $parent_theme = $parent_theme_data->Name . ' ' . $parent_theme_data->Version; } // Try to identify the hosting provider $host = edd_get_host(); $return = '### Begin System Info (Generated ' . date( 'Y-m-d H:i:s' ) . ') ###' . "\n\n"; // Start with the basics... $return .= '-- Site Info' . "\n\n"; $return .= 'Site URL: ' . site_url() . "\n"; $return .= 'Home URL: ' . home_url() . "\n"; $return .= 'Multisite: ' . ( is_multisite() ? 'Yes' : 'No' ) . "\n"; $return = apply_filters( 'edd_sysinfo_after_site_info', $return ); // Can we determine the site's host? if ( $host ) { $return .= "\n" . '-- Hosting Provider' . "\n\n"; $return .= 'Host: ' . $host . "\n"; $return = apply_filters( 'edd_sysinfo_after_host_info', $return ); } // The local users' browser information, handled by the Browser class $return .= "\n" . '-- User Browser' . "\n\n"; $return .= $browser; $return = apply_filters( 'edd_sysinfo_after_user_browser', $return ); $locale = get_locale(); // WordPress configuration $return .= "\n" . '-- WordPress Configuration' . "\n\n"; $return .= 'Version: ' . get_bloginfo( 'version' ) . "\n"; $return .= 'Language: ' . ( ! empty( $locale ) ? $locale : 'en_US' ) . "\n"; $return .= 'Permalink Structure: ' . ( get_option( 'permalink_structure' ) ? get_option( 'permalink_structure' ) : 'Default' ) . "\n"; $return .= 'Active Theme: ' . $theme . "\n"; $return .= 'WP Timezone: ' . wp_timezone_string() . "\n"; $return .= 'EDD Timezone: ' . edd_get_timezone_abbr() . "\n"; if ( $parent_theme !== $theme ) { $return .= 'Parent Theme: ' . $parent_theme . "\n"; } $customized_template_files = edd_get_theme_edd_templates(); $return .= "\n" . '-- Customized Templates' . "\n\n"; if ( empty( $customized_template_files ) ) { $return .= 'No custom templates found.' . "\n\n"; } else { foreach ( $customized_template_files as $customized_template_file ) { $return .= $customized_template_file . "\n"; } } $return .= "\n"; $return = apply_filters( 'edd_sysinfo_after_customized_templates', $return ); $return .= 'Show On Front: ' . get_option( 'show_on_front' ) . "\n"; // Only show page specs if frontpage is set to 'page' if ( get_option( 'show_on_front' ) == 'page' ) { $front_page_id = get_option( 'page_on_front' ); $blog_page_id = get_option( 'page_for_posts' ); $return .= 'Page On Front: ' . ( $front_page_id != 0 ? '#' . $front_page_id : 'Unset' ) . "\n"; $return .= 'Page For Posts: ' . ( $blog_page_id != 0 ? '#' . $blog_page_id : 'Unset' ) . "\n"; } $return .= 'ABSPATH: ' . ABSPATH . "\n"; // Make sure wp_remote_post() is working $request['cmd'] = '_notify-validate'; $params = array( 'sslverify' => false, 'timeout' => 60, 'user-agent' => 'EDD/' . EDD_VERSION, 'body' => $request, ); $response = wp_remote_post( 'https://www.paypal.com/cgi-bin/webscr', $params ); if ( ! is_wp_error( $response ) && $response['response']['code'] >= 200 && $response['response']['code'] < 300 ) { $WP_REMOTE_POST = 'wp_remote_post() works'; } else { $WP_REMOTE_POST = 'wp_remote_post() does not work'; } $return .= 'Remote Post: ' . $WP_REMOTE_POST . "\n"; $return .= 'Table Prefix: ' . 'Length: ' . strlen( $wpdb->prefix ) . ' Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n"; // Commented out per https://github.com/easydigitaldownloads/Easy-Digital-Downloads/issues/3475 //$return .= 'Admin AJAX: ' . ( edd_test_ajax_works() ? 'Accessible' : 'Inaccessible' ) . "\n"; $return .= 'WP_DEBUG: ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n"; $return .= 'Memory Limit: ' . WP_MEMORY_LIMIT . "\n"; $return .= 'Registered Post Stati: ' . implode( ', ', get_post_stati() ) . "\n"; $return = apply_filters( 'edd_sysinfo_after_wordpress_config', $return ); // EDD configuration $return .= "\n" . '-- EDD Configuration' . "\n\n"; $return .= 'Version: ' . EDD_VERSION . "\n"; $return .= 'Upgraded From: ' . get_option( 'edd_version_upgraded_from', 'None' ) . "\n"; $return .= 'Test Mode: ' . ( edd_is_test_mode() ? "Enabled\n" : "Disabled\n" ); $return .= 'AJAX: ' . ( ! edd_is_ajax_disabled() ? "Enabled\n" : "Disabled\n" ); $return .= 'Guest Checkout: ' . ( edd_no_guest_checkout() ? "Disabled\n" : "Enabled\n" ); $return .= 'Symlinks: ' . ( apply_filters( 'edd_symlink_file_downloads', edd_get_option( 'symlink_file_downloads', false ) ) && function_exists( 'symlink' ) ? "Enabled\n" : "Disabled\n" ); $return .= 'Download Method: ' . ucfirst( edd_get_file_download_method() ) . "\n"; $return .= 'Currency Code: ' . edd_get_currency() . "\n"; $return .= 'Currency Position: ' . edd_get_option( 'currency_position', 'before' ) . "\n"; $return .= 'Decimal Separator: ' . edd_get_option( 'decimal_separator', '.' ) . "\n"; $return .= 'Thousands Separator: ' . edd_get_option( 'thousands_separator', ',' ) . "\n"; $return .= 'Upgrades Completed: ' . implode( ',', edd_get_completed_upgrades() ) . "\n"; $return .= 'Download Link Expiration: ' . edd_get_option( 'download_link_expiration' ) . " hour(s)\n"; $return = apply_filters( 'edd_sysinfo_after_edd_config', $return ); // EDD Database tables $return .= "\n" . '-- EDD Database Tables' . "\n\n"; foreach ( EDD()->components as $component ) { // Object $thing = $component->get_interface( 'table' ); if ( ! empty( $thing ) ) { $return .= str_pad( $thing->name . ': ', 32, ' ' ) . $thing->get_version() . "\n"; } // Meta $thing = $component->get_interface( 'meta' ); if ( ! empty( $thing ) ) { $return .= str_pad( $thing->name . ': ', 32, ' ' ) . $thing->get_version() . "\n"; } } $return = apply_filters( 'edd_sysinfo_after_edd_database_tables', $return ); // EDD Database tables $return .= "\n" . '-- EDD Database Row Counts' . "\n\n"; foreach ( EDD()->components as $component ) { // Object $thing = $component->get_interface( 'table' ); if ( ! empty( $thing ) ) { $return .= str_pad( $thing->name . ': ', 32, ' ' ) . $thing->count() . "\n"; } // Meta $thing = $component->get_interface( 'meta' ); if ( ! empty( $thing ) ) { $return .= str_pad( $thing->name . ': ', 32, ' ' ) . $thing->count() . "\n"; } } $return = apply_filters( 'edd_sysinfo_after_edd_database_row_counts', $return ); // EDD pages $purchase_page = edd_get_option( 'purchase_page', '' ); $success_page = edd_get_option( 'success_page', '' ); $failure_page = edd_get_option( 'failure_page', '' ); $return .= "\n" . '-- EDD Page Configuration' . "\n\n"; $return .= 'Checkout: ' . ( ! empty( $purchase_page ) ? "Valid\n" : "Invalid\n" ); $return .= 'Checkout Page: ' . ( ! empty( $purchase_page ) ? get_permalink( $purchase_page ) . "\n" : "Unset\n" ); $return .= 'Success Page: ' . ( ! empty( $success_page ) ? get_permalink( $success_page ) . "\n" : "Unset\n" ); $return .= 'Failure Page: ' . ( ! empty( $failure_page ) ? get_permalink( $failure_page ) . "\n" : "Unset\n" ); $return .= 'Downloads Slug: ' . ( defined( 'EDD_SLUG' ) ? '/' . EDD_SLUG . "\n" : "/downloads\n" ); $return = apply_filters( 'edd_sysinfo_after_edd_pages', $return ); // EDD gateways $return .= "\n" . '-- EDD Gateway Configuration' . "\n\n"; $active_gateways = edd_get_enabled_payment_gateways(); if ( $active_gateways ) { $default_gateway_is_active = edd_is_gateway_active( edd_get_default_gateway() ); if ( $default_gateway_is_active ) { $default_gateway = edd_get_default_gateway(); $default_gateway = $active_gateways[ $default_gateway ]['admin_label']; } else { $default_gateway = 'Test Payment'; } $gateways = array(); foreach ( $active_gateways as $gateway ) { $gateways[] = $gateway['admin_label']; } $return .= 'Enabled Gateways: ' . implode( ', ', $gateways ) . "\n"; $return .= 'Default Gateway: ' . $default_gateway . "\n"; } else { $return .= 'Enabled Gateways: None' . "\n"; } $return = apply_filters( 'edd_sysinfo_after_edd_gateways', $return ); // EDD Taxes $return .= "\n" . '-- EDD Tax Configuration' . "\n\n"; $return .= 'Taxes: ' . ( edd_use_taxes() ? "Enabled\n" : "Disabled\n" ); $return .= 'Default Rate: ' . edd_get_formatted_tax_rate() . "\n"; $return .= 'Display On Checkout: ' . ( edd_get_option( 'checkout_include_tax', false ) ? "Displayed\n" : "Not Displayed\n" ); $return .= 'Prices Include Tax: ' . ( edd_prices_include_tax() ? "Yes\n" : "No\n" ); $rates = edd_get_tax_rates(); if ( ! empty( $rates ) ) { $return .= 'Country / State Rates: ' . "\n"; foreach ( $rates as $rate ) { $return .= ' Country: ' . $rate['country'] . ', State: ' . $rate['state'] . ', Rate: ' . $rate['rate'] . "\n"; } } $return = apply_filters( 'edd_sysinfo_after_edd_taxes', $return ); // EDD Templates $dir = get_stylesheet_directory() . '/edd_templates/*'; if ( is_dir( $dir ) && ( count( glob( "$dir/*" ) ) !== 0 ) ) { $return .= "\n" . '-- EDD Template Overrides' . "\n\n"; foreach ( glob( $dir ) as $file ) { $return .= 'Filename: ' . basename( $file ) . "\n"; } $return = apply_filters( 'edd_sysinfo_after_edd_templates', $return ); } // Drop Ins $dropins = get_dropins(); if ( count( $dropins ) > 0 ) { $return .= "\n" . '-- Drop Ins' . "\n\n"; foreach ( $dropins as $plugin => $plugin_data ) { $return .= str_pad( $plugin_data['Name'] . ': ', 26, ' ' ) . $plugin_data['Version'] . "\n"; } $return = apply_filters( 'edd_sysinfo_after_wordpress_dropin_plugins', $return ); } // Get plugins that have an update $updates = get_plugin_updates(); // Must-use plugins // NOTE: MU plugins can't show updates! $muplugins = get_mu_plugins(); if ( count( $muplugins ) > 0 ) { $return .= "\n" . '-- Must-Use Plugins' . "\n\n"; foreach ( $muplugins as $plugin => $plugin_data ) { $return .= str_pad( $plugin_data['Name'] . ': ', 26, ' ' ) . $plugin_data['Version'] . "\n"; } $return = apply_filters( 'edd_sysinfo_after_wordpress_mu_plugins', $return ); } // WordPress active plugins $return .= "\n" . '-- WordPress Active Plugins' . "\n\n"; $plugins = get_plugins(); $active_plugins = get_option( 'active_plugins', array() ); foreach ( $plugins as $plugin_path => $plugin ) { if ( ! in_array( $plugin_path, $active_plugins ) ) { continue; } $update = ( array_key_exists( $plugin_path, $updates ) ) ? ' (needs update - ' . $updates[ $plugin_path ]->update->new_version . ')' : ''; $plugin_url = ''; if ( ! empty( $plugin['PluginURI'] ) ) { $plugin_url = $plugin['PluginURI']; } elseif ( ! empty( $plugin['AuthorURI'] ) ) { $plugin_url = $plugin['AuthorURI']; } elseif ( ! empty( $plugin['Author'] ) ) { $plugin_url = $plugin['Author']; } if ( $plugin_url ) { $plugin_url = "\n" . $plugin_url; } $return .= str_pad( $plugin['Name'] . ': ', 26, ' ' ) . $plugin['Version'] . $update . $plugin_url . "\n\n"; } $return = apply_filters( 'edd_sysinfo_after_wordpress_plugins', $return ); // WordPress inactive plugins $return .= "\n" . '-- WordPress Inactive Plugins' . "\n\n"; foreach ( $plugins as $plugin_path => $plugin ) { if ( in_array( $plugin_path, $active_plugins ) ) { continue; } $update = ( array_key_exists( $plugin_path, $updates ) ) ? ' (needs update - ' . $updates[ $plugin_path ]->update->new_version . ')' : ''; $plugin_url = ''; if ( ! empty( $plugin['PluginURI'] ) ) { $plugin_url = $plugin['PluginURI']; } elseif ( ! empty( $plugin['AuthorURI'] ) ) { $plugin_url = $plugin['AuthorURI']; } elseif ( ! empty( $plugin['Author'] ) ) { $plugin_url = $plugin['Author']; } if ( $plugin_url ) { $plugin_url = "\n" . $plugin_url; } $return .= str_pad( $plugin['Name'] . ': ', 26, ' ' ) . $plugin['Version'] . $update . $plugin_url . "\n\n"; } $return = apply_filters( 'edd_sysinfo_after_wordpress_plugins_inactive', $return ); if ( is_multisite() ) { // WordPress Multisite active plugins $return .= "\n" . '-- Network Active Plugins' . "\n\n"; $plugins = wp_get_active_network_plugins(); $active_plugins = get_site_option( 'active_sitewide_plugins', array() ); foreach ( $plugins as $plugin_path ) { $plugin_base = plugin_basename( $plugin_path ); if ( ! array_key_exists( $plugin_base, $active_plugins ) ) { continue; } $update = ( array_key_exists( $plugin_path, $updates ) ) ? ' (needs update - ' . $updates[ $plugin_path ]->update->new_version . ')' : ''; $plugin = get_plugin_data( $plugin_path ); $plugin_url = ''; if ( ! empty( $plugin['PluginURI'] ) ) { $plugin_url = $plugin['PluginURI']; } elseif ( ! empty( $plugin['AuthorURI'] ) ) { $plugin_url = $plugin['AuthorURI']; } elseif ( ! empty( $plugin['Author'] ) ) { $plugin_url = $plugin['Author']; } if ( $plugin_url ) { $plugin_url = "\n" . $plugin_url; } $return .= str_pad( $plugin['Name'] . ': ', 26, ' ' ) . $plugin['Version'] . $update . $plugin_url . "\n\n"; } $return = apply_filters( 'edd_sysinfo_after_wordpress_ms_plugins', $return ); } // Server configuration (really just versioning) $return .= "\n" . '-- Webserver Configuration' . "\n\n"; $return .= 'PHP Version: ' . PHP_VERSION . "\n"; $return .= 'MySQL Version: ' . $wpdb->db_version() . "\n"; $return .= 'Webserver Info: ' . $_SERVER['SERVER_SOFTWARE'] . "\n"; $return = apply_filters( 'edd_sysinfo_after_webserver_config', $return ); // PHP configs... now we're getting to the important stuff $return .= "\n" . '-- PHP Configuration' . "\n\n"; $return .= 'Memory Limit: ' . ini_get( 'memory_limit' ) . "\n"; $return .= 'Upload Max Size: ' . ini_get( 'upload_max_filesize' ) . "\n"; $return .= 'Post Max Size: ' . ini_get( 'post_max_size' ) . "\n"; $return .= 'Upload Max Filesize: ' . ini_get( 'upload_max_filesize' ) . "\n"; $return .= 'Time Limit: ' . ini_get( 'max_execution_time' ) . "\n"; $return .= 'Max Input Vars: ' . ini_get( 'max_input_vars' ) . "\n"; $return .= 'Display Errors: ' . ( ini_get( 'display_errors' ) ? 'On (' . ini_get( 'display_errors' ) . ')' : 'N/A' ) . "\n"; $return .= 'PHP Arg Separator: ' . edd_get_php_arg_separator_output() . "\n"; $return = apply_filters( 'edd_sysinfo_after_php_config', $return ); // PHP extensions and such $return .= "\n" . '-- PHP Extensions' . "\n\n"; $return .= 'cURL: ' . ( function_exists( 'curl_init' ) ? 'Supported' : 'Not Supported' ) . "\n"; $return .= 'fsockopen: ' . ( function_exists( 'fsockopen' ) ? 'Supported' : 'Not Supported' ) . "\n"; $return .= 'SOAP Client: ' . ( class_exists( 'SoapClient' ) ? 'Installed' : 'Not Installed' ) . "\n"; $return .= 'Suhosin: ' . ( extension_loaded( 'suhosin' ) ? 'Installed' : 'Not Installed' ) . "\n"; $return = apply_filters( 'edd_sysinfo_after_php_ext', $return ); // Session stuff $return .= "\n" . '-- Session Configuration' . "\n\n"; $return .= 'EDD Use Sessions: ' . ( defined( 'EDD_USE_PHP_SESSIONS' ) && EDD_USE_PHP_SESSIONS ? 'Enforced' : ( EDD()->session->use_php_sessions() ? 'Enabled' : 'Disabled' ) ) . "\n"; $return .= 'Session: ' . ( isset( $_SESSION ) ? 'Enabled' : 'Disabled' ) . "\n"; // The rest of this is only relevant is session is enabled if ( isset( $_SESSION ) ) { $return .= 'Session Name: ' . esc_html( ini_get( 'session.name' ) ) . "\n"; $return .= 'Cookie Path: ' . esc_html( ini_get( 'session.cookie_path' ) ) . "\n"; $return .= 'Save Path: ' . esc_html( ini_get( 'session.save_path' ) ) . "\n"; $return .= 'Use Cookies: ' . ( ini_get( 'session.use_cookies' ) ? 'On' : 'Off' ) . "\n"; $return .= 'Use Only Cookies: ' . ( ini_get( 'session.use_only_cookies' ) ? 'On' : 'Off' ) . "\n"; } $return = apply_filters( 'edd_sysinfo_after_session_config', $return ); $return .= "\n" . '### End System Info ###'; return $return; } /** * Generates a System Info download file * * @since 2.0 */ function edd_tools_sysinfo_download() { if ( ! current_user_can( 'manage_shop_settings' ) ) { return; } nocache_headers(); header( 'Content-Type: text/plain' ); header( 'Content-Disposition: attachment; filename="edd-system-info.txt"' ); echo wp_strip_all_tags( $_POST['edd-sysinfo'] ); edd_die(); } add_action( 'edd_download_sysinfo', 'edd_tools_sysinfo_download' ); /** * Redirects requests to the old sales log to the orders page. * * @since 3.0 */ function edd_redirect_sales_log() { if ( edd_is_admin_page( 'tools', 'logs' ) && ! empty( $_GET['view'] ) && 'sales' === $_GET['view'] ) { $query_args = array( 'page' => 'edd-payment-history' ); $args_to_remap = array( 'download' => 'product-id', 'start-date' => 'start-date', 'end-date' => 'end-date' ); foreach( $args_to_remap as $old_arg => $new_arg ) { if ( ! empty( $_GET[ $old_arg ] ) ) { $query_args[ $new_arg ] = urlencode( $_GET[ $old_arg ] ); } } wp_safe_redirect( esc_url_raw( add_query_arg( $query_args, edd_get_admin_base_url() ) ) ); exit; } } add_action( 'admin_init', 'edd_redirect_sales_log' ); /** * Renders the Logs tab in the Tools screen. * * @since 3.0 */ function edd_tools_tab_logs() { if ( ! current_user_can( 'view_shop_reports' ) ) { return; } require_once EDD_PLUGIN_DIR . 'includes/admin/tools/logs.php'; $current_view = 'file_downloads'; $log_views = edd_log_default_views(); if ( isset( $_GET['view'] ) && array_key_exists( $_GET['view'], $log_views ) ) { $current_view = sanitize_text_field( $_GET['view'] ); } /** * Fires when a given logs view should be rendered. * * The dynamic portion of the hook name, `$current_view`, represents the slug * of the logs view to render. * * @since 1.4 */ do_action( 'edd_logs_view_' . $current_view ); } add_action( 'edd_tools_tab_logs', 'edd_tools_tab_logs' );