From 865028556a07bb94f88d0a43e967ddd02b5ae60e Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Fri, 12 Jun 2020 05:25:55 -0300 Subject: [PATCH] add clear template cache tool --- ...-rest-system-status-tools-v2-controller.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php b/src/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php index 31af6604073..321a02b688d 100644 --- a/src/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php +++ b/src/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php @@ -167,6 +167,15 @@ class WC_REST_System_Status_Tools_V2_Controller extends WC_REST_Controller { __( 'This tool will delete all customer session data from the database, including current carts and saved carts in the database.', 'woocommerce-rest-api' ) ), ), + 'clear_template_cache' => array( + 'name' => __( 'Clear template cache', 'woocommerce-rest-api' ), + 'button' => __( 'Clear', 'woocommerce-rest-api' ), + 'desc' => sprintf( + '%1$s %2$s', + __( 'Note:', 'woocommerce-rest-api' ), + __( 'This tool will empty the template cache.', 'woocommerce-rest-api' ) + ), + ), 'install_pages' => array( 'name' => __( 'Create default WooCommerce pages', 'woocommerce-rest-api' ), 'button' => __( 'Create pages', 'woocommerce-rest-api' ), @@ -215,6 +224,10 @@ class WC_REST_System_Status_Tools_V2_Controller extends WC_REST_Controller { unset( $tools['regenerate_thumbnails'] ); } + if ( ! function_exists( 'wc_clear_template_cache' ) ) { + unset( $tools['clear_template_cache'] ); + } + return apply_filters( 'woocommerce_debug_tools', $tools ); } @@ -564,6 +577,11 @@ class WC_REST_System_Status_Tools_V2_Controller extends WC_REST_Controller { } break; + case 'clear_template_cache': + wc_clear_template_cache(); + $message = __( 'Template cache cleared.', 'woocommerce-rest-api' ); + break; + default: $tools = $this->get_tools(); if ( isset( $tools[ $tool ]['callback'] ) ) {