• File: GeolocationBackendHooks.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/classes/multi-currency/geolocation/GeolocationBackendHooks.php
  • File size: 277 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WCML\MultiCurrency;

use WCML\StandAlone\IStandAloneAction;

class GeolocationBackendHooks implements \IWPML_Backend_Action, IStandAloneAction {

	public function add_hooks() {
		add_filter( 'wcml_geolocation_is_used', [ Geolocation::class, 'isUsed' ] );
	}
}