2013-10-23 15:52:58 +00:00
< form method = " post " action = " options.php " >
< ? php settings_fields ( 'woocommerce_status_settings_fields' ); ?>
2013-10-23 16:21:03 +00:00
< ? php $options = wp_parse_args ( get_option ( 'woocommerce_status_options' , array () ), array ( 'uninstall_data' => 0 , 'template_debug_mode' => 0 ) ); ?>
2013-10-23 15:52:58 +00:00
< table class = " wc_status_table widefat " cellspacing = " 0 " >
< thead class = " tools " >
< tr >
< th colspan = " 2 " >< ? php _e ( 'Tools' , 'woocommerce' ); ?> </th>
</ tr >
</ thead >
< tbody class = " tools " >
2013-10-23 16:21:03 +00:00
< ? php foreach ( $tools as $action => $tool ) { ?>
< tr >
< td >< ? php echo esc_html ( $tool [ 'name' ] ); ?> </td>
< td >
< p >
< a href = " <?php echo wp_nonce_url( admin_url('admin.php?page=wc_status&tab=tools&action=' . $action ), 'debug_action' ); ?> " class = " button " >< ? php echo esc_html ( $tool [ 'button' ] ); ?> </a>
< span class = " description " >< ? php echo wp_kses_post ( $tool [ 'desc' ] ); ?> </span>
</ p >
</ td >
</ tr >
< ? php } ?>
< tr >
< td >< ? php _e ( 'Template Debug Mode' , 'woocommerce' ); ?> </td>
< td >
< p >
< label >< input type = " checkbox " class = " checkbox " name = " woocommerce_status_options[template_debug_mode] " value = " 1 " < ? php checked ( '1' , $options [ 'template_debug_mode' ] ); ?> /> <?php _e( 'Enabled', 'woocommerce' ); ?></label>
</ p >
2013-10-23 15:52:58 +00:00
< p >
2013-10-23 16:21:03 +00:00
< span class = " description " >< ? php _e ( 'This tool will disable template overrides for logged-in administrators for debugging purposes.' , 'woocommerce' ); ?> </span>
</ p >
</ td >
</ tr >
< tr >
< td >< ? php _e ( 'Remove post types on uninstall' , 'woocommerce' ); ?> </td>
< td >
< p >
< label >< input type = " checkbox " class = " checkbox " name = " woocommerce_status_options[uninstall_data] " value = " 1 " < ? php checked ( '1' , $options [ 'uninstall_data' ] ); ?> /> <?php _e( 'Enabled', 'woocommerce' ); ?></label>
2013-10-23 15:52:58 +00:00
</ p >
2013-10-23 16:21:03 +00:00
< p >
< span class = " description " >< ? php _e ( 'This tool will delete all product and order post data when uninstalling via Plugins > Delete.' , 'woocommerce' ); ?> </span>
</ p >
</ td >
</ tr >
2013-10-23 15:52:58 +00:00
</ tbody >
</ table >
< p class = " submit " >
< input type = " submit " class = " button-primary " value = " <?php esc_attr_e('Save Changes') ?> " />
</ p >
</ form >