This commit is contained in:
2026-07-02 15:54:39 -06:00
commit 9883323161
17470 changed files with 4470592 additions and 0 deletions
@@ -0,0 +1,16 @@
<?php
namespace Automattic\Jetpack_Boost\Lib;
class Super_Cache_Tracking {
public static function setup() {
add_action( 'jb_cache_moved_to_wpsc', array( __CLASS__, 'track_move_to_wpsc' ) );
}
/**
* Track when site owner moves cache to WPSC.
*/
public static function track_move_to_wpsc() {
Analytics::record_user_event( 'moved_cache_to_wpsc' );
}
}