woocommerce
/
includes
/
admin
/
plugin-updates
/
views
/
html-notice-untested-extensions-inline.php
html-notice-untested-extensions-inline.php
8 years ago
html-notice-untested-extensions-modal.php
2 years ago
html-notice-untested-extensions-inline.php
32 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin View: Notice - Untested extensions. |
| 4 | * |
| 5 | * @package WooCommerce\Admin |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | ?> |
| 12 | <div class="wc_plugin_upgrade_notice extensions_warning <?php echo esc_attr( $upgrade_type ); ?>"> |
| 13 | <p><?php echo wp_kses_post( $message ); ?></p> |
| 14 | |
| 15 | <table class="plugin-details-table" cellspacing="0"> |
| 16 | <thead> |
| 17 | <tr> |
| 18 | <th><?php esc_html_e( 'Plugin', 'woocommerce' ); ?></th> |
| 19 | <th><?php esc_html_e( 'Tested up to WooCommerce version', 'woocommerce' ); ?></th> |
| 20 | </tr> |
| 21 | </thead> |
| 22 | <tbody> |
| 23 | <?php foreach ( $plugins as $plugin ) : ?> |
| 24 | <tr> |
| 25 | <td><?php echo esc_html( $plugin['Name'] ); ?></td> |
| 26 | <td><?php echo esc_html( $plugin['WC tested up to'] ); ?></td> |
| 27 | </tr> |
| 28 | <?php endforeach ?> |
| 29 | </tbody> |
| 30 | </table> |
| 31 | </div> |
| 32 |