
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

class WCML_W3TC_Multi_Currency {

	public function __construct() {

		add_filter( 'init', [ $this, 'init' ], 15 );

	}

	public function init() {

		// Only needed for older W3TC versions.
		if ( function_exists( 'w3_require_once' ) ) {
			add_action( 'wcml_switch_currency', [ $this, 'flush_page_cache' ] );
		}

	}

	public function flush_page_cache() {
		w3_require_once( W3TC_LIB_W3_DIR . '/AdminActions/FlushActionsAdmin.php' );
		$flush = new W3_AdminActions_FlushActionsAdmin();
		$flush->flush_pgcache();
	}


}
