html-admin-page-status-tools.php 942 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Admin View: Page - Status Tools
  4. */
  5. if ( ! defined( 'ABSPATH' ) ) {
  6. exit;
  7. }
  8. ?>
  9. <form method="post" action="options.php">
  10. <?php settings_fields( 'woocommerce_status_settings_fields' ); ?>
  11. <table class="wc_status_table wc_status_table--tools widefat" cellspacing="0">
  12. <tbody class="tools">
  13. <?php foreach ( $tools as $action => $tool ) : ?>
  14. <tr class="<?php echo sanitize_html_class( $action ); ?>">
  15. <th>
  16. <strong class="name"><?php echo esc_html( $tool['name'] ); ?></strong>
  17. <p class="description"><?php echo wp_kses_post( $tool['desc'] ); ?></p>
  18. </th>
  19. <td class="run-tool">
  20. <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>
  21. </td>
  22. </tr>
  23. <?php endforeach; ?>
  24. </tbody>
  25. </table>
  26. </form>