2012-03-25 01:49:21 +00:00
< ? php
/**
* Debug / Status page
*
* @ author WooThemes
* @ category Admin
2012-08-14 12:21:34 +00:00
* @ package WooCommerce / Admin / System Status
* @ version 1.6 . 4
2012-03-25 01:49:21 +00:00
*/
2012-08-14 12:21:34 +00:00
/**
* Output the content of the debugging page .
*
* @ access public
* @ return void
*/
2012-05-21 08:25:34 +00:00
function woocommerce_status () {
2012-12-30 15:02:24 +00:00
global $woocommerce , $wpdb ;
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
$current_tab = ! empty ( $_REQUEST [ 'tab' ] ) ? $_REQUEST [ 'tab' ] : 'status' ;
2012-03-25 01:49:21 +00:00
?>
< div class = " wrap woocommerce " >
2013-02-02 15:56:00 +00:00
< div class = " icon32 icon32-woocommerce-status " id = " icon-woocommerce " >< br /></ div >< h2 class = " nav-tab-wrapper woo-nav-tab-wrapper " >
< ? php
$tabs = array (
'status' => __ ( 'System Status' , 'woocommerce' ),
'tools' => __ ( 'Tools' , 'woocommerce' ),
);
foreach ( $tabs as $name => $label ) {
echo '<a href="' . admin_url ( 'admin.php?page=woocommerce_status&tab=' . $name ) . '" class="nav-tab ' ;
if ( $current_tab == $name ) echo 'nav-tab-active' ;
echo '">' . $label . '</a>' ;
2012-03-25 01:49:21 +00:00
}
2013-02-02 15:56:00 +00:00
?>
</ h2 >< br />
< ? php
switch ( $current_tab ) {
case " tools " :
woocommerce_status_tools ();
break ;
default :
woocommerce_status_report ();
break ;
2012-03-25 01:49:21 +00:00
}
?>
2013-02-02 15:56:00 +00:00
</ div >
< ? php
}
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
/**
* woocommerce_status_report function .
*
* @ access public
* @ return void
*/
function woocommerce_status_report () {
global $woocommerce , $wpdb ;
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
?>
< div class = " woocommerce-message " >
< div class = " squeezer " >
< h4 >< ? php _e ( 'Please include this information when requesting support:' , 'woocommerce' ); ?> </h4>
< p class = " submit " >< a href = " # " download = " wc_report.txt " class = " button-primary debug-report " >< ? php _e ( 'Download System Report File' , 'woocommerce' ); ?> </a></p>
</ div >
</ div >
< br />
< table class = " wc_status_table widefat " cellspacing = " 0 " >
< thead >
< tr >
< th colspan = " 2 " >< ? php _e ( 'Environment' , 'woocommerce' ); ?> </th>
</ tr >
</ thead >
< tbody >
< tr >
< td >< ? php _e ( 'Home URL' , 'woocommerce' ); ?> :</td>
< td >< ? php echo home_url (); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'Site URL' , 'woocommerce' ); ?> :</td>
< td >< ? php echo site_url (); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'WC Version' , 'woocommerce' ); ?> :</td>
< td >< ? php echo esc_html ( $woocommerce -> version ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'WC Database Version' , 'woocommerce' ); ?> :</td>
< td >< ? php echo esc_html ( get_option ( 'woocommerce_db_version' ) ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'WP Version' , 'woocommerce' ); ?> :</td>
< td >< ? php if ( is_multisite () ) echo 'WPMU' ; else echo 'WP' ; ?> <?php echo bloginfo('version'); ?></td>
</ tr >
< tr >
< td >< ? php _e ( 'Web Server Info' , 'woocommerce' ); ?> :</td>
< td >< ? php echo esc_html ( $_SERVER [ 'SERVER_SOFTWARE' ] ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'PHP Version' , 'woocommerce' ); ?> :</td>
< td >< ? php if ( function_exists ( 'phpversion' ) ) echo esc_html ( phpversion () ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'MySQL Version' , 'woocommerce' ); ?> :</td>
< td >< ? php if ( function_exists ( 'mysql_get_server_info' ) ) echo esc_html ( mysql_get_server_info () ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'WP Memory Limit' , 'woocommerce' ); ?> :</td>
< td >< ? php
$memory = woocommerce_let_to_num ( WP_MEMORY_LIMIT );
if ( $memory < 67108864 ) {
echo '<mark class="error">' . sprintf ( __ ( '%s - We recommend setting memory to at least 64MB. See: <a href="%s">Increasing memory allocated to PHP</a>' , 'woocommerce' ), wp_convert_bytes_to_hr ( $memory ), 'http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP' ) . '</mark>' ;
} else {
echo '<mark class="yes">' . wp_convert_bytes_to_hr ( $memory ) . '</mark>' ;
}
?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'WP Debug Mode' , 'woocommerce' ); ?> :</td>
< td >< ? php if ( defined ( 'WP_DEBUG' ) && WP_DEBUG ) echo '<mark class="yes">' . __ ( 'Yes' , 'woocommerce' ) . '</mark>' ; else echo '<mark class="no">' . __ ( 'No' , 'woocommerce' ) . '</mark>' ; ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'WP Max Upload Size' , 'woocommerce' ); ?> :</td>
< td >< ? php echo wp_convert_bytes_to_hr ( wp_max_upload_size () ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'PHP Post Max Size' , 'woocommerce' ); ?> :</td>
< td >< ? php if ( function_exists ( 'ini_get' ) ) echo wp_convert_bytes_to_hr ( woocommerce_let_to_num ( ini_get ( 'post_max_size' ) ) ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'PHP Time Limit' , 'woocommerce' ); ?> :</td>
< td >< ? php if ( function_exists ( 'ini_get' ) ) echo ini_get ( 'max_execution_time' ); ?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'WC Logging' , 'woocommerce' ); ?> :</td>
< td >< ? php
if ( @ fopen ( $woocommerce -> plugin_path () . '/logs/paypal.txt' , 'a' ) )
echo '<mark class="yes">' . __ ( 'Log directory is writable.' , 'woocommerce' ) . '</mark>' ;
else
echo '<mark class="error">' . __ ( 'Log directory (<code>woocommerce/logs/</code>) is not writable. Logging will not be possible.' , 'woocommerce' ) . '</mark>' ;
?> </td>
</ tr >
< ? php
2012-05-10 11:37:10 +00:00
$posting = array ();
2012-08-02 22:19:31 +00:00
2012-06-12 07:34:06 +00:00
// fsockopen/cURL
2012-10-16 09:45:33 +00:00
$posting [ 'fsockopen_curl' ][ 'name' ] = __ ( 'fsockopen/cURL' , 'woocommerce' );
2012-06-12 07:34:06 +00:00
if ( function_exists ( 'fsockopen' ) || function_exists ( 'curl_init' ) ) {
if ( function_exists ( 'fsockopen' ) && function_exists ( 'curl_init' )) {
2012-10-16 09:45:33 +00:00
$posting [ 'fsockopen_curl' ][ 'note' ] = __ ( 'Your server has fsockopen and cURL enabled.' , 'woocommerce' );
2012-06-12 07:34:06 +00:00
} elseif ( function_exists ( 'fsockopen' )) {
2012-10-16 09:45:33 +00:00
$posting [ 'fsockopen_curl' ][ 'note' ] = __ ( 'Your server has fsockopen enabled, cURL is disabled.' , 'woocommerce' );
2012-06-12 07:34:06 +00:00
} else {
2012-10-16 09:45:33 +00:00
$posting [ 'fsockopen_curl' ][ 'note' ] = __ ( 'Your server has cURL enabled, fsockopen is disabled.' , 'woocommerce' );
2012-06-12 07:34:06 +00:00
}
$posting [ 'fsockopen_curl' ][ 'success' ] = true ;
2012-05-10 11:37:10 +00:00
} else {
2013-02-02 15:56:00 +00:00
$posting [ 'fsockopen_curl' ][ 'note' ] = __ ( 'Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.' , 'woocommerce' ) . '</mark>' ;
$posting [ 'fsockopen_curl' ][ 'success' ] = false ;
}
2012-11-27 16:22:47 +00:00
2013-02-02 15:56:00 +00:00
// SOAP
$posting [ 'soap_client' ][ 'name' ] = __ ( 'SOAP Client' , 'woocommerce' );
2012-11-04 15:03:48 +00:00
if ( class_exists ( 'SoapClient' ) ) {
$posting [ 'soap_client' ][ 'note' ] = __ ( 'Your server has the SOAP Client class enabled.' , 'woocommerce' );
$posting [ 'soap_client' ][ 'success' ] = true ;
} else {
2013-02-02 15:56:00 +00:00
$posting [ 'soap_client' ][ 'note' ] = sprintf ( __ ( 'Your server does not have the <a href="%s">SOAP Client</a> class enabled - some gateway plugins which use SOAP may not work as expected.' , 'woocommerce' ), 'http://php.net/manual/en/class.soapclient.php' ) . '</mark>' ;
$posting [ 'soap_client' ][ 'success' ] = false ;
}
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
// WP Remote Post Check
$posting [ 'wp_remote_post' ][ 'name' ] = __ ( 'WP Remote Post' , 'woocommerce' );
2012-07-09 17:12:24 +00:00
$request [ 'cmd' ] = '_notify-validate' ;
2012-08-02 22:19:31 +00:00
$params = array (
2012-05-10 11:37:10 +00:00
'sslverify' => false ,
2012-06-18 11:36:27 +00:00
'timeout' => 60 ,
2012-07-09 17:12:24 +00:00
'user-agent' => 'WooCommerce/' . $woocommerce -> version ,
'body' => $request
2012-08-02 22:19:31 +00:00
);
2012-05-10 11:37:10 +00:00
$response = wp_remote_post ( 'https://www.paypal.com/cgi-bin/webscr' , $params );
2012-08-02 22:19:31 +00:00
2012-06-18 11:36:27 +00:00
if ( ! is_wp_error ( $response ) && $response [ 'response' ][ 'code' ] >= 200 && $response [ 'response' ][ 'code' ] < 300 ) {
2013-02-02 15:56:00 +00:00
$posting [ 'wp_remote_post' ][ 'note' ] = __ ( 'wp_remote_post() was successful - PayPal IPN is working.' , 'woocommerce' );
$posting [ 'wp_remote_post' ][ 'success' ] = true ;
} elseif ( is_wp_error ( $response ) ) {
$posting [ 'wp_remote_post' ][ 'note' ] = __ ( 'wp_remote_post() failed. PayPal IPN won\'t work with your server. Contact your hosting provider. Error:' , 'woocommerce' ) . ' ' . $response -> get_error_message ();
$posting [ 'wp_remote_post' ][ 'success' ] = false ;
} else {
2012-10-16 09:45:33 +00:00
$posting [ 'wp_remote_post' ][ 'note' ] = __ ( 'wp_remote_post() failed. PayPal IPN may not work with your server.' , 'woocommerce' );
2013-02-02 15:56:00 +00:00
$posting [ 'wp_remote_post' ][ 'success' ] = false ;
}
2012-03-25 01:49:21 +00:00
2013-02-28 17:24:12 +00:00
$posting = apply_filters ( 'woocommerce_debug_posting' , $posting );
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
foreach ( $posting as $post ) { $mark = ( isset ( $post [ 'success' ] ) && $post [ 'success' ] == true ) ? 'yes' : 'error' ;
?>
< tr >
< td >< ? php echo esc_html ( $post [ 'name' ] ); ?> :</td>
< td >
< mark class = " <?php echo $mark ; ?> " >
< ? php echo wp_kses_data ( $post [ 'note' ] ); ?>
</ mark >
</ td >
</ tr >
< ? php
}
?>
</ tbody >
< thead >
< tr >
< th colspan = " 2 " >< ? php _e ( 'Plugins' , 'woocommerce' ); ?> </th>
</ tr >
</ thead >
< tbody >
< tr >
< td >< ? php _e ( 'Installed Plugins' , 'woocommerce' ); ?> :</td>
< td >< ? php
$active_plugins = ( array ) get_option ( 'active_plugins' , array () );
if ( is_multisite () )
$active_plugins = array_merge ( $active_plugins , get_site_option ( 'active_sitewide_plugins' , array () ) );
$wc_plugins = array ();
foreach ( $active_plugins as $plugin ) {
$plugin_data = @ get_plugin_data ( WP_PLUGIN_DIR . '/' . $plugin );
if ( ! empty ( $plugin_data [ 'Name' ] ) ) {
$wc_plugins [] = $plugin_data [ 'Name' ] . ' ' . __ ( 'by' , 'woocommerce' ) . ' ' . $plugin_data [ 'Author' ] . ' ' . __ ( 'version' , 'woocommerce' ) . ' ' . $plugin_data [ 'Version' ];
}
}
if ( sizeof ( $wc_plugins ) == 0 )
echo '-' ;
else
echo implode ( ', <br/>' , $wc_plugins );
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
?> </td>
</ tr >
</ tbody >
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
< thead >
< tr >
< th colspan = " 2 " >< ? php _e ( 'Settings' , 'woocommerce' ); ?> </th>
</ tr >
</ thead >
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
< tbody >
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
< tr >
< td >< ? php _e ( 'Force SSL' , 'woocommerce' ); ?> :</td>
< td >< ? php echo get_option ( 'woocommerce_force_ssl_checkout' ) === 'yes' ? '<mark class="yes">' . __ ( 'Yes' , 'woocommerce' ) . '</mark>' : '<mark class="no">' . __ ( 'No' , 'woocommerce' ) . '</mark>' ; ?> </td>
</ tr >
</ tbody >
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
< thead >
< tr >
< th colspan = " 2 " >< ? php _e ( 'WC Pages' , 'woocommerce' ); ?> </th>
</ tr >
</ thead >
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
< tbody >
< ? php
$check_pages = array (
__ ( 'Shop Base' , 'woocommerce' ) => array (
'option' => 'woocommerce_shop_page_id' ,
'shortcode' => ''
),
__ ( 'Cart' , 'woocommerce' ) => array (
'option' => 'woocommerce_cart_page_id' ,
'shortcode' => '[woocommerce_cart]'
),
__ ( 'Checkout' , 'woocommerce' ) => array (
'option' => 'woocommerce_checkout_page_id' ,
'shortcode' => '[woocommerce_checkout]'
),
__ ( 'Pay' , 'woocommerce' ) => array (
'option' => 'woocommerce_pay_page_id' ,
'shortcode' => '[woocommerce_pay]'
),
__ ( 'Thanks' , 'woocommerce' ) => array (
'option' => 'woocommerce_thanks_page_id' ,
'shortcode' => '[woocommerce_thankyou]'
),
__ ( 'My Account' , 'woocommerce' ) => array (
'option' => 'woocommerce_myaccount_page_id' ,
'shortcode' => '[woocommerce_my_account]'
),
__ ( 'Edit Address' , 'woocommerce' ) => array (
'option' => 'woocommerce_edit_address_page_id' ,
'shortcode' => '[woocommerce_edit_address]'
),
__ ( 'View Order' , 'woocommerce' ) => array (
'option' => 'woocommerce_view_order_page_id' ,
'shortcode' => '[woocommerce_view_order]'
),
__ ( 'Change Password' , 'woocommerce' ) => array (
'option' => 'woocommerce_change_password_page_id' ,
'shortcode' => '[woocommerce_change_password]'
),
__ ( 'Lost Password' , 'woocommerce' ) => array (
'option' => 'woocommerce_lost_password_page_id' ,
'shortcode' => '[woocommerce_lost_password]'
)
);
$alt = 1 ;
foreach ( $check_pages as $page_name => $values ) {
if ( $alt == 1 ) echo '<tr>' ; else echo '<tr>' ;
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
echo '<td>' . esc_html ( $page_name ) . ':</td><td>' ;
$error = false ;
$page_id = get_option ( $values [ 'option' ] );
// Page ID check
if ( ! $page_id ) {
echo '<mark class="error">' . __ ( 'Page not set' , 'woocommerce' ) . '</mark>' ;
$error = true ;
2012-03-25 01:49:21 +00:00
} else {
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
// Shortcode check
if ( $values [ 'shortcode' ] ) {
$page = get_post ( $page_id );
if ( empty ( $page ) ) {
echo '<mark class="error">' . sprintf ( __ ( 'Page does not exist' , 'woocommerce' ) ) . '</mark>' ;
$error = true ;
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
} else if ( ! strstr ( $page -> post_content , $values [ 'shortcode' ] ) ) {
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
echo '<mark class="error">' . sprintf ( __ ( 'Page does not contain the shortcode: %s' , 'woocommerce' ), $values [ 'shortcode' ] ) . '</mark>' ;
$error = true ;
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
}
}
2012-08-02 22:19:31 +00:00
2012-03-25 01:49:21 +00:00
}
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
if ( ! $error ) echo '<mark class="yes">#' . absint ( $page_id ) . ' - ' . str_replace ( home_url (), '' , get_permalink ( $page_id ) ) . '</mark>' ;
echo '</td></tr>' ;
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
$alt = $alt * - 1 ;
}
?>
</ tbody >
< thead >
< tr >
< th colspan = " 2 " >< ? php _e ( 'WC Taxonomies' , 'woocommerce' ); ?> </th>
</ tr >
</ thead >
< tbody >
< tr >
< td >< ? php _e ( 'Order Statuses' , 'woocommerce' ); ?> :</td>
< td >< ? php
$display_terms = array ();
$terms = get_terms ( 'shop_order_status' , array ( 'hide_empty' => 0 ) );
foreach ( $terms as $term )
$display_terms [] = $term -> name . ' (' . $term -> slug . ')' ;
echo implode ( ', ' , array_map ( 'esc_html' , $display_terms ) );
?> </td>
</ tr >
< tr >
< td >< ? php _e ( 'Product Types' , 'woocommerce' ); ?> :</td>
< td >< ? php
$display_terms = array ();
$terms = get_terms ( 'product_type' , array ( 'hide_empty' => 0 ) );
foreach ( $terms as $term )
$display_terms [] = $term -> name . ' (' . $term -> slug . ')' ;
echo implode ( ', ' , array_map ( 'esc_html' , $display_terms ) );
?> </td>
</ tr >
</ tbody >
2013-02-11 17:22:22 +00:00
< thead >
< tr >
< th colspan = " 2 " >< ? php _e ( 'Templates' , 'woocommerce' ); ?> </th>
</ tr >
</ thead >
< tbody >
< tr >
< td >< ? php _e ( 'Template Overrides' , 'woocommerce' ); ?> :</td>
< td >< ? php
$template_path = $woocommerce -> plugin_path () . '/templates/' ;
$found_files = array ();
$files = woocommerce_scan_template_files ( $template_path );
foreach ( $files as $file ) {
if ( file_exists ( get_stylesheet_directory () . '/' . $file ) ) {
$found_files [] = '/' . $file ;
} elseif ( file_exists ( get_stylesheet_directory () . '/woocommerce/' . $file ) ) {
$found_files [] = '/woocommerce/' . $file ;
}
}
if ( $found_files ) {
echo implode ( ', <br/>' , $found_files );
} else {
_e ( 'No core overrides present in theme.' , 'woocommerce' );
}
?> </td>
</ tr >
</ tbody >
2013-02-02 15:56:00 +00:00
</ table >
< script type = " text/javascript " >
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
jQuery . wc_strPad = function ( i , l , s ) {
var o = i . toString ();
if ( ! s ) { s = '0' ; }
while ( o . length < l ) {
o = o + s ;
2012-03-25 01:49:21 +00:00
}
2013-02-02 15:56:00 +00:00
return o ;
};
jQuery ( 'a.debug-report' ) . click ( function (){
var report = " data:text/plain;charset=utf-8, " ;
jQuery ( '.wc_status_table thead, .wc_status_table tbody' ) . each ( function (){
$this = jQuery ( this );
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
if ( $this . is ( 'thead' ) ) {
2012-03-25 01:49:21 +00:00
2013-02-02 15:56:00 +00:00
report = report + " \n ### " + jQuery . trim ( $this . text () ) + " ### \n \n " ;
2012-08-02 22:19:31 +00:00
2013-02-02 15:56:00 +00:00
} else {
jQuery ( 'tr' , $this ) . each ( function (){
$this = jQuery ( this );
name = jQuery . wc_strPad ( jQuery . trim ( $this . find ( 'td:eq(0)' ) . text () ), 25 , ' ' );
value = jQuery . trim ( $this . find ( 'td:eq(1)' ) . text () );
report = report + '' + name + value + " \n \n " ;
});
}
} );
jQuery ( this ) . attr ( 'href' , encodeURI ( report ) );
return true ;
2012-03-25 01:49:21 +00:00
});
2012-08-02 22:19:31 +00:00
2012-03-25 01:49:21 +00:00
</ script >
< ? php
2013-02-02 15:56:00 +00:00
}
2013-02-11 17:22:22 +00:00
/**
* woocommerce_scan_template_files function .
*
* @ access public
* @ param mixed $template_path
* @ return void
*/
function woocommerce_scan_template_files ( $template_path ) {
$files = scandir ( $template_path );
$result = array ();
if ( $files ) {
foreach ( $files as $key => $value ) {
if ( ! in_array ( $value , array ( " . " , " .. " ) ) ) {
if ( is_dir ( $template_path . DIRECTORY_SEPARATOR . $value ) ) {
$sub_files = woocommerce_scan_template_files ( $template_path . DIRECTORY_SEPARATOR . $value );
foreach ( $sub_files as $sub_file ) {
$result [] = $value . DIRECTORY_SEPARATOR . $sub_file ;
}
} else {
$result [] = $value ;
}
}
}
}
return $result ;
}
2013-02-02 15:56:00 +00:00
/**
* woocommerce_status_tools function .
*
* @ access public
* @ return void
*/
function woocommerce_status_tools () {
global $woocommerce , $wpdb ;
$tools = apply_filters ( 'wc_debug_tools' , array (
'clear_transients' => array (
'name' => __ ( 'WC Transients' , 'woocommerce' ),
'button' => __ ( 'Clear transients' , 'woocommerce' ),
'desc' => __ ( 'This tool will clear the product/shop transients cache.' , 'woocommerce' ),
),
'clear_expired_transients' => array (
'name' => __ ( 'Expired Transients' , 'woocommerce' ),
'button' => __ ( 'Clear expired transients' , 'woocommerce' ),
'desc' => __ ( 'This tool will clear ALL expired transients from Wordpress.' , 'woocommerce' ),
),
'recount_terms' => array (
'name' => __ ( 'Term counts' , 'woocommerce' ),
'button' => __ ( 'Recount terms' , 'woocommerce' ),
'desc' => __ ( 'This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog.' , 'woocommerce' ),
),
'reset_roles' => array (
'name' => __ ( 'Capabilities' , 'woocommerce' ),
'button' => __ ( 'Reset capabilities' , 'woocommerce' ),
'desc' => __ ( 'This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages.' , 'woocommerce' ),
),
) );
if ( ! empty ( $_GET [ 'action' ] ) && ! empty ( $_REQUEST [ '_wpnonce' ] ) && wp_verify_nonce ( $_REQUEST [ '_wpnonce' ], 'debug_action' ) ) {
switch ( $_GET [ 'action' ] ) {
case " clear_transients " :
$woocommerce -> clear_product_transients ();
echo '<div class="updated"><p>' . __ ( 'Product Transients Cleared' , 'woocommerce' ) . '</p></div>' ;
break ;
case " clear_expired_transients " :
// http://w-shadow.com/blog/2012/04/17/delete-stale-transients/
$rows = $wpdb -> query ( "
DELETE
a , b
FROM
{ $wpdb -> options } a , { $wpdb -> options } b
WHERE
a . option_name LIKE '_transient_%' AND
a . option_name NOT LIKE '_transient_timeout_%' AND
b . option_name = CONCAT (
'_transient_timeout_' ,
SUBSTRING (
a . option_name ,
CHAR_LENGTH ( '_transient_' ) + 1
)
)
AND b . option_value < UNIX_TIMESTAMP ()
" );
$rows2 = $wpdb -> query ( "
DELETE
a , b
FROM
{ $wpdb -> options } a , { $wpdb -> options } b
WHERE
a . option_name LIKE '_site_transient_%' AND
a . option_name NOT LIKE '_site_transient_timeout_%' AND
b . option_name = CONCAT (
'_site_transient_timeout_' ,
SUBSTRING (
a . option_name ,
CHAR_LENGTH ( '_site_transient_' ) + 1
)
)
AND b . option_value < UNIX_TIMESTAMP ()
" );
echo '<div class="updated"><p>' . sprintf ( __ ( '%d Transients Rows Cleared' , 'woocommerce' ), $rows + $rows2 ) . '</p></div>' ;
break ;
case " reset_roles " :
// Remove then re-add caps and roles
woocommerce_remove_roles ();
woocommerce_init_roles ();
echo '<div class="updated"><p>' . __ ( 'Roles successfully reset' , 'woocommerce' ) . '</p></div>' ;
break ;
case " recount_terms " :
$product_cats = get_terms ( 'product_cat' , array ( 'hide_empty' => false , 'fields' => 'id=>parent' ) );
_woocommerce_term_recount ( $product_cats , get_taxonomy ( 'product_cat' ), false , false );
$product_tags = get_terms ( 'product_tag' , array ( 'hide_empty' => false , 'fields' => 'id=>parent' ) );
_woocommerce_term_recount ( $product_cats , get_taxonomy ( 'product_tag' ), false , false );
echo '<div class="updated"><p>' . __ ( 'Terms successfully recounted' , 'woocommerce' ) . '</p></div>' ;
break ;
default :
$action = esc_attr ( $_GET [ 'action' ] );
if ( isset ( $tools [ $action ][ 'callback' ] ) ) {
$callback = $tools [ $action ][ 'callback' ];
$return = call_user_func ( $callback );
if ( $return === false ) {
if ( is_array ( $callback ) ) {
echo '<div class="error"><p>' . sprintf ( __ ( 'There was an error calling %s::%s' , 'woocommerce' ), get_class ( $callback [ 0 ] ), $callback [ 1 ] ) . '</p></div>' ;
} else {
echo '<div class="error"><p>' . sprintf ( __ ( 'There was an error calling %s' , 'woocommerce' ), $callback ) . '</p></div>' ;
}
}
}
}
}
?>
< 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 " >
< ? 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=woocommerce_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 } ?>
</ tbody >
</ table >
< ? php
2012-03-25 01:49:21 +00:00
}