initial commit
This commit is contained in:
236
includes/admin/plugin-updates/class-wc-plugin-updates.php
Normal file
236
includes/admin/plugin-updates/class-wc-plugin-updates.php
Normal file
@ -0,0 +1,236 @@
|
||||
<?php
|
||||
/**
|
||||
* Class for displaying plugin warning notifications and determining 3rd party plugin compatibility.
|
||||
*
|
||||
* @package WooCommerce\Admin
|
||||
* @version 3.2.0
|
||||
*/
|
||||
|
||||
use Automattic\Jetpack\Constants;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* WC_Admin_Plugin_Updates Class.
|
||||
*/
|
||||
class WC_Plugin_Updates {
|
||||
|
||||
/**
|
||||
* This is the header used by extensions to show requirements.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION_REQUIRED_HEADER = 'WC requires at least';
|
||||
|
||||
/**
|
||||
* This is the header used by extensions to show testing.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION_TESTED_HEADER = 'WC tested up to';
|
||||
|
||||
/**
|
||||
* The version for the update to WooCommerce.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $new_version = '';
|
||||
|
||||
/**
|
||||
* Array of plugins lacking testing with the major version.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $major_untested_plugins = array();
|
||||
|
||||
/**
|
||||
* Common JS for initializing and managing thickbox-based modals.
|
||||
*/
|
||||
protected function generic_modal_js() {
|
||||
?>
|
||||
<script>
|
||||
( function( $ ) {
|
||||
// Initialize thickbox.
|
||||
tb_init( '.wc-thickbox' );
|
||||
|
||||
var old_tb_position = false;
|
||||
|
||||
// Make the WC thickboxes look good when opened.
|
||||
$( '.wc-thickbox' ).on( 'click', function( evt ) {
|
||||
var $overlay = $( '#TB_overlay' );
|
||||
if ( ! $overlay.length ) {
|
||||
$( 'body' ).append( '<div id="TB_overlay"></div><div id="TB_window" class="wc_untested_extensions_modal_container"></div>' );
|
||||
} else {
|
||||
$( '#TB_window' ).removeClass( 'thickbox-loading' ).addClass( 'wc_untested_extensions_modal_container' );
|
||||
}
|
||||
|
||||
// WP overrides the tb_position function. We need to use a different tb_position function than that one.
|
||||
// This is based on the original tb_position.
|
||||
if ( ! old_tb_position ) {
|
||||
old_tb_position = tb_position;
|
||||
}
|
||||
tb_position = function() {
|
||||
$( '#TB_window' ).css( { marginLeft: '-' + parseInt( ( TB_WIDTH / 2 ), 10 ) + 'px', width: TB_WIDTH + 'px' } );
|
||||
$( '#TB_window' ).css( { marginTop: '-' + parseInt( ( TB_HEIGHT / 2 ), 10 ) + 'px' } );
|
||||
};
|
||||
});
|
||||
|
||||
// Reset tb_position to WP default when modal is closed.
|
||||
$( 'body' ).on( 'thickbox:removed', function() {
|
||||
if ( old_tb_position ) {
|
||||
tb_position = old_tb_position;
|
||||
}
|
||||
});
|
||||
})( jQuery );
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Message Helpers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Methods for getting messages.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get the inline warning notice for major version updates.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_extensions_inline_warning_major() {
|
||||
$upgrade_type = 'major';
|
||||
$plugins = $this->major_untested_plugins;
|
||||
$version_parts = explode( '.', $this->new_version );
|
||||
$new_version = $version_parts[0] . '.0';
|
||||
|
||||
if ( empty( $plugins ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* translators: %s: version number */
|
||||
$message = sprintf( __( "<strong>Heads up!</strong> The versions of the following plugins you're running haven't been tested with WooCommerce %s. Please update them or confirm compatibility before updating WooCommerce, or you may experience issues:", 'woocommerce' ), $new_version );
|
||||
|
||||
ob_start();
|
||||
include __DIR__ . '/views/html-notice-untested-extensions-inline.php';
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the warning notice for the modal window.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_extensions_modal_warning() {
|
||||
$version_parts = explode( '.', $this->new_version );
|
||||
$new_version = $version_parts[0] . '.0';
|
||||
$plugins = $this->major_untested_plugins;
|
||||
|
||||
ob_start();
|
||||
include __DIR__ . '/views/html-notice-untested-extensions-modal.php';
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Data Helpers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Methods for getting & manipulating data.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get installed plugins that have a tested version lower than the input version.
|
||||
*
|
||||
* In case of testing major version compatibility and if current WC version is >= major version part
|
||||
* of the $new_version, no plugins are returned, even if they don't explicitly declare compatibility
|
||||
* with the $new_version.
|
||||
*
|
||||
* @param string $new_version WooCommerce version to test against.
|
||||
* @param string $release 'major', 'minor', or 'none'.
|
||||
* @return array of plugin info arrays
|
||||
*/
|
||||
public function get_untested_plugins( $new_version, $release ) {
|
||||
// Since 5.0 all versions are backwards compatible.
|
||||
if ( 'none' === $release ) {
|
||||
return array();
|
||||
}
|
||||
|
||||
$extensions = array_merge( $this->get_plugins_with_header( self::VERSION_TESTED_HEADER ), $this->get_plugins_for_woocommerce() );
|
||||
$untested = array();
|
||||
$new_version_parts = explode( '.', $new_version );
|
||||
$version = $new_version_parts[0];
|
||||
|
||||
if ( 'minor' === $release ) {
|
||||
$version .= '.' . $new_version_parts[1];
|
||||
}
|
||||
|
||||
foreach ( $extensions as $file => $plugin ) {
|
||||
if ( ! empty( $plugin[ self::VERSION_TESTED_HEADER ] ) ) {
|
||||
$plugin_version_parts = explode( '.', $plugin[ self::VERSION_TESTED_HEADER ] );
|
||||
|
||||
if ( ! is_numeric( $plugin_version_parts[0] )
|
||||
|| ( 'minor' === $release && ! isset( $plugin_version_parts[1] ) )
|
||||
|| ( 'minor' === $release && ! is_numeric( $plugin_version_parts[1] ) )
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$plugin_version = $plugin_version_parts[0];
|
||||
|
||||
if ( 'minor' === $release ) {
|
||||
$plugin_version .= '.' . $plugin_version_parts[1];
|
||||
}
|
||||
|
||||
if ( version_compare( $plugin_version, $version, '<' ) ) {
|
||||
$untested[ $file ] = $plugin;
|
||||
}
|
||||
} else {
|
||||
$plugin[ self::VERSION_TESTED_HEADER ] = __( 'unknown', 'woocommerce' );
|
||||
$untested[ $file ] = $plugin;
|
||||
}
|
||||
}
|
||||
|
||||
return $untested;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get plugins that have a valid value for a specific header.
|
||||
*
|
||||
* @param string $header Plugin header to search for.
|
||||
* @return array Array of plugins that contain the searched header.
|
||||
*/
|
||||
protected function get_plugins_with_header( $header ) {
|
||||
$plugins = get_plugins();
|
||||
$matches = array();
|
||||
|
||||
foreach ( $plugins as $file => $plugin ) {
|
||||
if ( ! empty( $plugin[ $header ] ) ) {
|
||||
$matches[ $file ] = $plugin;
|
||||
}
|
||||
}
|
||||
|
||||
return apply_filters( 'woocommerce_get_plugins_with_header', $matches, $header, $plugins );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get plugins which "maybe" are for WooCommerce.
|
||||
*
|
||||
* @return array of plugin info arrays
|
||||
*/
|
||||
protected function get_plugins_for_woocommerce() {
|
||||
$plugins = get_plugins();
|
||||
$matches = array();
|
||||
|
||||
foreach ( $plugins as $file => $plugin ) {
|
||||
if ( 'WooCommerce' !== $plugin['Name'] && ( stristr( $plugin['Name'], 'woocommerce' ) || stristr( $plugin['Description'], 'woocommerce' ) ) ) {
|
||||
$matches[ $file ] = $plugin;
|
||||
}
|
||||
}
|
||||
|
||||
return apply_filters( 'woocommerce_get_plugins_for_woocommerce', $matches, $plugins );
|
||||
}
|
||||
}
|
@ -0,0 +1,173 @@
|
||||
<?php
|
||||
/**
|
||||
* Manages WooCommerce plugin updating on the Plugins screen.
|
||||
*
|
||||
* @package WooCommerce\Admin
|
||||
* @version 3.2.0
|
||||
*/
|
||||
|
||||
use Automattic\Jetpack\Constants;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
if ( ! class_exists( 'WC_Plugin_Updates' ) ) {
|
||||
include_once dirname( __FILE__ ) . '/class-wc-plugin-updates.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Class WC_Plugins_Screen_Updates
|
||||
*/
|
||||
class WC_Plugins_Screen_Updates extends WC_Plugin_Updates {
|
||||
|
||||
/**
|
||||
* The upgrade notice shown inline.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $upgrade_notice = '';
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*/
|
||||
public function __construct() {
|
||||
add_action( 'in_plugin_update_message-woocommerce/woocommerce.php', array( $this, 'in_plugin_update_message' ), 10, 2 );
|
||||
}
|
||||
|
||||
/**
|
||||
* Show plugin changes on the plugins screen. Code adapted from W3 Total Cache.
|
||||
*
|
||||
* @param array $args Unused parameter.
|
||||
* @param stdClass $response Plugin update response.
|
||||
*/
|
||||
public function in_plugin_update_message( $args, $response ) {
|
||||
$version_type = Constants::get_constant( 'WC_SSR_PLUGIN_UPDATE_RELEASE_VERSION_TYPE' );
|
||||
if ( ! is_string( $version_type ) ) {
|
||||
$version_type = 'none';
|
||||
}
|
||||
|
||||
$this->new_version = $response->new_version;
|
||||
$this->upgrade_notice = $this->get_upgrade_notice( $response->new_version );
|
||||
$this->major_untested_plugins = $this->get_untested_plugins( $response->new_version, $version_type );
|
||||
|
||||
$current_version_parts = explode( '.', Constants::get_constant( 'WC_VERSION' ) );
|
||||
$new_version_parts = explode( '.', $this->new_version );
|
||||
|
||||
// If user has already moved to the minor version, we don't need to flag up anything.
|
||||
if ( version_compare( $current_version_parts[0] . '.' . $current_version_parts[1], $new_version_parts[0] . '.' . $new_version_parts[1], '=' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( ! empty( $this->major_untested_plugins ) ) {
|
||||
$this->upgrade_notice .= $this->get_extensions_inline_warning_major();
|
||||
}
|
||||
|
||||
if ( ! empty( $this->major_untested_plugins ) ) {
|
||||
$this->upgrade_notice .= $this->get_extensions_modal_warning();
|
||||
add_action( 'admin_print_footer_scripts', array( $this, 'plugin_screen_modal_js' ) );
|
||||
}
|
||||
|
||||
echo apply_filters( 'woocommerce_in_plugin_update_message', $this->upgrade_notice ? '</p>' . wp_kses_post( $this->upgrade_notice ) . '<p class="dummy">' : '' ); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the upgrade notice from WordPress.org.
|
||||
*
|
||||
* @param string $version WooCommerce new version.
|
||||
* @return string
|
||||
*/
|
||||
protected function get_upgrade_notice( $version ) {
|
||||
$transient_name = 'wc_upgrade_notice_' . $version;
|
||||
$upgrade_notice = get_transient( $transient_name );
|
||||
|
||||
if ( false === $upgrade_notice ) {
|
||||
$response = wp_safe_remote_get( 'https://plugins.svn.wordpress.org/woocommerce/trunk/readme.txt' );
|
||||
|
||||
if ( ! is_wp_error( $response ) && ! empty( $response['body'] ) ) {
|
||||
$upgrade_notice = $this->parse_update_notice( $response['body'], $version );
|
||||
set_transient( $transient_name, $upgrade_notice, DAY_IN_SECONDS );
|
||||
}
|
||||
}
|
||||
return $upgrade_notice;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse update notice from readme file.
|
||||
*
|
||||
* @param string $content WooCommerce readme file content.
|
||||
* @param string $new_version WooCommerce new version.
|
||||
* @return string
|
||||
*/
|
||||
private function parse_update_notice( $content, $new_version ) {
|
||||
$version_parts = explode( '.', $new_version );
|
||||
$check_for_notices = array(
|
||||
$version_parts[0] . '.0', // Major.
|
||||
$version_parts[0] . '.0.0', // Major.
|
||||
$version_parts[0] . '.' . $version_parts[1], // Minor.
|
||||
$version_parts[0] . '.' . $version_parts[1] . '.' . $version_parts[2], // Patch.
|
||||
);
|
||||
$notice_regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( $new_version ) . '\s*=|$)~Uis';
|
||||
$upgrade_notice = '';
|
||||
|
||||
foreach ( $check_for_notices as $check_version ) {
|
||||
if ( version_compare( Constants::get_constant( 'WC_VERSION' ), $check_version, '>' ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$matches = null;
|
||||
if ( preg_match( $notice_regexp, $content, $matches ) ) {
|
||||
$notices = (array) preg_split( '~[\r\n]+~', trim( $matches[2] ) );
|
||||
|
||||
if ( version_compare( trim( $matches[1] ), $check_version, '=' ) ) {
|
||||
$upgrade_notice .= '<p class="wc_plugin_upgrade_notice">';
|
||||
|
||||
foreach ( $notices as $index => $line ) {
|
||||
$upgrade_notice .= preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line );
|
||||
}
|
||||
|
||||
$upgrade_notice .= '</p>';
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return wp_kses_post( $upgrade_notice );
|
||||
}
|
||||
|
||||
/**
|
||||
* JS for the modal window on the plugins screen.
|
||||
*/
|
||||
public function plugin_screen_modal_js() {
|
||||
?>
|
||||
<script>
|
||||
( function( $ ) {
|
||||
var $update_box = $( '#woocommerce-update' );
|
||||
var $update_link = $update_box.find('a.update-link').first();
|
||||
var update_url = $update_link.attr( 'href' );
|
||||
|
||||
// Set up thickbox.
|
||||
$update_link.removeClass( 'update-link' );
|
||||
$update_link.addClass( 'wc-thickbox' );
|
||||
$update_link.attr( 'href', '#TB_inline?height=600&width=550&inlineId=wc_untested_extensions_modal' );
|
||||
|
||||
// Trigger the update if the user accepts the modal's warning.
|
||||
$( '#wc_untested_extensions_modal .accept' ).on( 'click', function( evt ) {
|
||||
evt.preventDefault();
|
||||
tb_remove();
|
||||
$update_link.removeClass( 'wc-thickbox open-plugin-details-modal' );
|
||||
$update_link.addClass( 'update-link' );
|
||||
$update_link.attr( 'href', update_url );
|
||||
$update_link.trigger( 'click' );
|
||||
});
|
||||
|
||||
$( '#wc_untested_extensions_modal .cancel' ).on( 'click', function( evt ) {
|
||||
evt.preventDefault();
|
||||
tb_remove();
|
||||
});
|
||||
})( jQuery );
|
||||
</script>
|
||||
<?php
|
||||
$this->generic_modal_js();
|
||||
}
|
||||
}
|
||||
new WC_Plugins_Screen_Updates();
|
@ -0,0 +1,102 @@
|
||||
<?php
|
||||
/**
|
||||
* Manages WooCommerce plugin updating on the Updates screen.
|
||||
*
|
||||
* @package WooCommerce\Admin
|
||||
* @version 3.2.0
|
||||
*/
|
||||
|
||||
use Automattic\Jetpack\Constants;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
if ( ! class_exists( 'WC_Plugin_Updates' ) ) {
|
||||
include_once dirname( __FILE__ ) . '/class-wc-plugin-updates.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* Class WC_Updates_Screen_Updates
|
||||
*/
|
||||
class WC_Updates_Screen_Updates extends WC_Plugin_Updates {
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*/
|
||||
public function __construct() {
|
||||
add_action( 'admin_print_footer_scripts', array( $this, 'update_screen_modal' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a warning message on the upgrades screen if the user tries to upgrade and has untested plugins.
|
||||
*/
|
||||
public function update_screen_modal() {
|
||||
$updateable_plugins = get_plugin_updates();
|
||||
if ( empty( $updateable_plugins['woocommerce/woocommerce.php'] )
|
||||
|| empty( $updateable_plugins['woocommerce/woocommerce.php']->update )
|
||||
|| empty( $updateable_plugins['woocommerce/woocommerce.php']->update->new_version ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$version_type = Constants::get_constant( 'WC_SSR_PLUGIN_UPDATE_RELEASE_VERSION_TYPE' );
|
||||
if ( ! is_string( $version_type ) ) {
|
||||
$version_type = 'none';
|
||||
}
|
||||
|
||||
$this->new_version = wc_clean( $updateable_plugins['woocommerce/woocommerce.php']->update->new_version );
|
||||
$this->major_untested_plugins = $this->get_untested_plugins( $this->new_version, $version_type );
|
||||
|
||||
if ( ! empty( $this->major_untested_plugins ) ) {
|
||||
echo $this->get_extensions_modal_warning(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
||||
$this->update_screen_modal_js();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* JS for the modal window on the updates screen.
|
||||
*/
|
||||
protected function update_screen_modal_js() {
|
||||
?>
|
||||
<script>
|
||||
( function( $ ) {
|
||||
var modal_dismissed = false;
|
||||
|
||||
// Show the modal if the WC upgrade checkbox is checked.
|
||||
var show_modal_if_checked = function() {
|
||||
if ( modal_dismissed ) {
|
||||
return;
|
||||
}
|
||||
var $checkbox = $( 'input[value="woocommerce/woocommerce.php"]' );
|
||||
if ( $checkbox.prop( 'checked' ) ) {
|
||||
$( '#wc-upgrade-warning' ).trigger( 'click' );
|
||||
}
|
||||
}
|
||||
|
||||
$( '#plugins-select-all, input[value="woocommerce/woocommerce.php"]' ).on( 'change', function() {
|
||||
show_modal_if_checked();
|
||||
} );
|
||||
|
||||
// Add a hidden thickbox link to use for bringing up the modal.
|
||||
$('body').append( '<a href="#TB_inline?height=600&width=550&inlineId=wc_untested_extensions_modal" class="wc-thickbox" id="wc-upgrade-warning" style="display:none"></a>' );
|
||||
|
||||
// Don't show the modal again once it's been accepted.
|
||||
$( '#wc_untested_extensions_modal .accept' ).on( 'click', function( evt ) {
|
||||
evt.preventDefault();
|
||||
modal_dismissed = true;
|
||||
tb_remove();
|
||||
});
|
||||
|
||||
// Uncheck the WC update checkbox if the modal is canceled.
|
||||
$( '#wc_untested_extensions_modal .cancel' ).on( 'click', function( evt ) {
|
||||
evt.preventDefault();
|
||||
$( 'input[value="woocommerce/woocommerce.php"]' ).prop( 'checked', false );
|
||||
tb_remove();
|
||||
});
|
||||
})( jQuery );
|
||||
</script>
|
||||
<?php
|
||||
$this->generic_modal_js();
|
||||
}
|
||||
}
|
||||
new WC_Updates_Screen_Updates();
|
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* Admin View: Notice - Untested extensions.
|
||||
*
|
||||
* @package WooCommerce\Admin
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
<div class="wc_plugin_upgrade_notice extensions_warning <?php echo esc_attr( $upgrade_type ); ?>">
|
||||
<p><?php echo wp_kses_post( $message ); ?></p>
|
||||
|
||||
<table class="plugin-details-table" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?php esc_html_e( 'Plugin', 'woocommerce' ); ?></th>
|
||||
<th><?php esc_html_e( 'Tested up to WooCommerce version', 'woocommerce' ); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ( $plugins as $plugin ) : ?>
|
||||
<tr>
|
||||
<td><?php echo esc_html( $plugin['Name'] ); ?></td>
|
||||
<td><?php echo esc_html( $plugin['WC tested up to'] ); ?></td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/**
|
||||
* Admin View: Notice - Untested extensions.
|
||||
*
|
||||
* @package WooCommerce\Admin
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
$untested_plugins_msg = sprintf(
|
||||
/* translators: %s: version number */
|
||||
__( 'The following active plugin(s) have not declared compatibility with WooCommerce %s yet and should be updated and examined further before you proceed:', 'woocommerce' ),
|
||||
$new_version
|
||||
);
|
||||
|
||||
?>
|
||||
<div id="wc_untested_extensions_modal">
|
||||
<div class="wc_untested_extensions_modal--content">
|
||||
<h1><?php esc_html_e( "Are you sure you're ready?", 'woocommerce' ); ?></h1>
|
||||
<div class="wc_plugin_upgrade_notice extensions_warning">
|
||||
<p><?php echo esc_html( $untested_plugins_msg ); ?></p>
|
||||
|
||||
<div class="plugin-details-table-container">
|
||||
<table class="plugin-details-table" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?php esc_html_e( 'Plugin', 'woocommerce' ); ?></th>
|
||||
<th><?php esc_html_e( 'Tested up to WooCommerce version', 'woocommerce' ); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ( $plugins as $plugin ) : ?>
|
||||
<tr>
|
||||
<td><?php echo esc_html( $plugin['Name'] ); ?></td>
|
||||
<td><?php echo esc_html( $plugin['WC tested up to'] ); ?></td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<p><?php esc_html_e( 'We strongly recommend creating a backup of your site before updating.', 'woocommerce' ); ?> <a href="https://woocommerce.com/2017/05/create-use-backups-woocommerce/" target="_blank"><?php esc_html_e( 'Learn more', 'woocommerce' ); ?></a></p>
|
||||
|
||||
<?php if ( current_user_can( 'update_plugins' ) ) : ?>
|
||||
<div class="actions">
|
||||
<a href="#" class="button button-secondary cancel"><?php esc_html_e( 'Cancel', 'woocommerce' ); ?></a>
|
||||
<a class="button button-primary accept" href="#"><?php esc_html_e( 'Update now', 'woocommerce' ); ?></a>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user