forked from litespeedtech/lscache_wp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwcml.cls.php
37 lines (29 loc) · 773 Bytes
/
wcml.cls.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
* The Third Party integration with WCML.
*
* @since 3.0
*/
namespace LiteSpeed\Thirdparty;
defined( 'WPINC' ) || exit;
class WCML
{
public static function detect()
{
if ( ! defined( 'WCML_VERSION' ) ) return;
add_filter( 'wcml_client_currency', __CLASS__ . '::apply_client_currency' );
add_action( 'wcml_set_client_currency', __CLASS__ . '::set_client_currency' );
}
public static function set_client_currency( $currency )
{
self::apply_client_currency( $currency );
do_action( 'litespeed_vary_ajax_force' );
}
public static function apply_client_currency( $currency )
{
if ( $currency !== wcml_get_woocommerce_currency_option() ) {
do_action( 'litespeed_vary_append', 'wcml_currency', $currency );
}
return $currency;
}
}