Server IP : 66.29.132.122 / Your IP : 18.222.21.178 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/admin/views/ |
Upload File : |
<?php /** * Admin View: Page - Status Tools */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <form method="post" action="options.php"> <?php settings_fields( 'kkart_status_settings_fields' ); ?> <table class="kkart_status_table kkart_status_table--tools widefat" cellspacing="0"> <tbody class="tools"> <?php foreach ( $tools as $action => $tool ) : ?> <tr class="<?php echo sanitize_html_class( $action ); ?>"> <th> <strong class="name"><?php echo esc_html( $tool['name'] ); ?></strong> <p class="description"><?php echo wp_kses_post( $tool['desc'] ); ?></p> </th> <td class="run-tool"> <a href="<?php echo wp_nonce_url( admin_url( 'admin.php?page=kkart-status&tab=tools&action=' . $action ), 'debug_action' ); ?>" class="button button-large <?php echo esc_attr( $action ); ?>"><?php echo esc_html( $tool['button'] ); ?></a> </td> </tr> <?php endforeach; ?> </tbody> </table> </form>