- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
89 lines
3.0 KiB
PHP
Executable File
89 lines
3.0 KiB
PHP
Executable File
<?php
|
|
if ( ! class_exists( 'BWF_Compatibility_With_Aelia_CS' ) ) {
|
|
#[AllowDynamicProperties]
|
|
class BWF_Compatibility_With_Aelia_CS {
|
|
|
|
public function __construct() {
|
|
|
|
}
|
|
|
|
public function is_enable() {
|
|
if ( false === class_exists( 'Aelia\WC\CurrencySwitcher\WC_Aelia_CurrencySwitcher' ) ) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
* Modifies the amount for the fixed discount given by the admin in the currency selected.
|
|
*
|
|
* @param integer|float $price
|
|
*
|
|
* @return float
|
|
*/
|
|
public function alter_fixed_amount( $price, $currency = null ) {
|
|
return $this->get_price_in_currency( $price, $currency );
|
|
}
|
|
|
|
/**
|
|
* Basic integration with WooCommerce Currency Switcher, developed by Aelia
|
|
* (http://aelia.co). This method can be used by any 3rd party plugin to
|
|
* return prices converted to the active currency.
|
|
*
|
|
* Need a consultation? Find us on Codeable: https://aelia.co/hire_us
|
|
*
|
|
* @param double price The source price.
|
|
* @param string to_currency The target currency. If empty, the active currency
|
|
* will be taken.
|
|
* @param string from_currency The source currency. If empty, WooCommerce base
|
|
* currency will be taken.
|
|
*
|
|
* @return double The price converted from source to destination currency.
|
|
* @author Aelia <support@aelia.co>
|
|
* @link https://aelia.co
|
|
*/
|
|
public function get_price_in_currency( $price, $to_currency = null, $from_currency = null ) {
|
|
// If source currency is not specified, take the shop's base currency as a default
|
|
if ( empty( $from_currency ) ) {
|
|
$from_currency = get_option( 'woocommerce_currency' );
|
|
}
|
|
// If target currency is not specified, take the active currency as a default.
|
|
// The Currency Switcher sets this currency automatically, based on the context. Other
|
|
// plugins can also override it, based on their own custom criteria, by implementing
|
|
// a filter for the "woocommerce_currency" hook.
|
|
//
|
|
// For example, a subscription plugin may decide that the active currency is the one
|
|
// taken from a previous subscription, because it's processing a renewal, and such
|
|
// renewal should keep the original prices, in the original currency.
|
|
if ( empty( $to_currency ) ) {
|
|
$to_currency = get_woocommerce_currency();
|
|
}
|
|
|
|
// Call the currency conversion filter. Using a filter allows for loose coupling. If the
|
|
// Aelia Currency Switcher is not installed, the filter call will return the original
|
|
// amount, without any conversion being performed. Your plugin won't even need to know if
|
|
// the multi-currency plugin is installed or active
|
|
return apply_filters( 'wc_aelia_cs_convert', $price, $from_currency, $to_currency );
|
|
}
|
|
|
|
|
|
function get_fixed_currency_price_reverse( $price, $from = null, $base = null ) {
|
|
|
|
$base = ( is_null( $base ) ) ? get_option( 'woocommerce_currency' ) : $base;
|
|
|
|
$price = $this->get_price_in_currency( $price, $base, $from );
|
|
|
|
return $price;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
BWF_Plugin_Compatibilities::register( new BWF_Compatibility_With_Aelia_CS(), 'aelia_cs' );
|
|
|
|
}
|
|
|