mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-07 10:04:03 +00:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* WCS_Debug_Tool_Cache_Updater Class
|
|
*
|
|
* Shared methods for tool on the WooCommerce > System Status > Tools page that need to
|
|
* update a cached data store's cache.
|
|
*
|
|
* @author Prospress
|
|
* @category Admin
|
|
* @package WooCommerce Subscriptions/Admin
|
|
* @version 1.0.0 - Migrated from WooCommerce Subscriptions v2.3
|
|
* @since 1.0.0 - Migrated from WooCommerce Subscriptions v2.3
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
/**
|
|
* WCS_Debug_Tool_Cache_Updater Class
|
|
*
|
|
* Shared methods for tool on the WooCommerce > System Status > Tools page that need to
|
|
* update a cached data store's cache.
|
|
*/
|
|
abstract class WCS_Debug_Tool_Cache_Updater extends WCS_Debug_Tool {
|
|
|
|
/**
|
|
* @var mixed $data_Store The store used for updating the cache.
|
|
*/
|
|
protected $data_store;
|
|
|
|
/**
|
|
* Attach callbacks and hooks, if the class's data store is using caching.
|
|
*/
|
|
public function init() {
|
|
if ( $this->is_data_store_cached() ) {
|
|
parent::init();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if the store is a cache updater, and has methods required to erase or generate cache.
|
|
*/
|
|
protected function is_data_store_cached() {
|
|
return is_a( $this->data_store, 'WCS_Cache_Updater' );
|
|
}
|
|
}
|