html-admin-page-addons.php
5 years ago
html-admin-page-product-export.php
5 years ago
html-admin-page-reports.php
5 years ago
html-admin-page-status-logs-db.php
5 years ago
html-admin-page-status-logs.php
5 years ago
html-admin-page-status-report.php
5 years ago
html-admin-page-status-tools.php
8 years ago
html-admin-page-status.php
8 years ago
html-admin-settings.php
5 years ago
html-bulk-edit-product.php
5 years ago
html-email-template-preview.php
7 years ago
html-notice-base-table-missing.php
5 years ago
html-notice-custom.php
8 years ago
html-notice-install.php
5 years ago
html-notice-legacy-shipping.php
7 years ago
html-notice-maxmind-license-key.php
6 years ago
html-notice-no-shipping-methods.php
7 years ago
html-notice-redirect-only-download.php
6 years ago
html-notice-regenerating-lookup-table.php
5 years ago
html-notice-regenerating-thumbnails.php
8 years ago
html-notice-secure-connection.php
8 years ago
html-notice-template-check.php
5 years ago
html-notice-update.php
7 years ago
html-notice-updated.php
7 years ago
html-notice-updating.php
6 years ago
html-notice-uploads-directory-is-unprotected.php
6 years ago
html-notice-wp-php-minimum-requirements.php
6 years ago
html-quick-edit-product.php
5 years ago
html-report-by-date.php
5 years ago
html-admin-page-status-tools.php
29 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin View: Page - Status Tools |
| 4 | */ |
| 5 | |
| 6 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | exit; |
| 8 | } |
| 9 | |
| 10 | ?> |
| 11 | <form method="post" action="options.php"> |
| 12 | <?php settings_fields( 'woocommerce_status_settings_fields' ); ?> |
| 13 | <table class="wc_status_table wc_status_table--tools widefat" cellspacing="0"> |
| 14 | <tbody class="tools"> |
| 15 | <?php foreach ( $tools as $action => $tool ) : ?> |
| 16 | <tr class="<?php echo sanitize_html_class( $action ); ?>"> |
| 17 | <th> |
| 18 | <strong class="name"><?php echo esc_html( $tool['name'] ); ?></strong> |
| 19 | <p class="description"><?php echo wp_kses_post( $tool['desc'] ); ?></p> |
| 20 | </th> |
| 21 | <td class="run-tool"> |
| 22 | <a href="<?php echo wp_nonce_url( admin_url( 'admin.php?page=wc-status&tab=tools&action=' . $action ), 'debug_action' ); ?>" class="button button-large <?php echo esc_attr( $action ); ?>"><?php echo esc_html( $tool['button'] ); ?></a> |
| 23 | </td> |
| 24 | </tr> |
| 25 | <?php endforeach; ?> |
| 26 | </tbody> |
| 27 | </table> |
| 28 | </form> |
| 29 |