| Server IP : 178.212.43.201 / Your IP : 10.100.0.33 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux spa0007.srv.paxillus.pl 5.4.17-2136.355.3.1.el8uek.x86_64 #3 SMP Sat May 9 17:11:55 PDT 2026 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/paxillus/wp-content/plugins/wp-optimize-premium/cache/extensions/ |
Upload File : |
<?php
if (!defined('ABSPATH')) die('No direct access allowed');
// works since WP 4.6
if (function_exists('add_filter')) {
add_action('wpo_cache_extensions_loaded', 'wpo_cache_ext_set_default_values');
}
/**
* When cookies aren't set, set the default $_COOKIE variable to allow serving files from cache
*
* @return void
*/
if (!function_exists('wpo_cache_ext_set_default_values')) {
function wpo_cache_ext_set_default_values() {
$cookies = wpo_cache_cookies();
$defaults = wpo_cache_config_get('default_values');
wpo_cache_ext_set_default_cookie_values_for_aelia($cookies, $defaults);
// Set default billing country. If the corresponding cache file exists, it will be served.
if (in_array('woocommerce_tax_country', $cookies) && !isset($_COOKIE['woocommerce_tax_country'])) {
if (wpo_cache_config_get('enable_cache_per_country')) {
$wc_tax_country = wpo_cache_get_visitor_country_code();
$_COOKIE['woocommerce_tax_country'] = $wc_tax_country;
if (!headers_sent()) setcookie('woocommerce_tax_country', $wc_tax_country, (time() + 30 * 86400), '/');
}
}
}
}
/**
* Set default cookie values for aelia plugins
*
* @param array $cookies wpo cache cookies
* @param array $defaults Default values for cache configuration
*
* @return void
*/
if (!function_exists('wpo_cache_ext_set_default_cookie_values_for_aelia')) {
function wpo_cache_ext_set_default_cookie_values_for_aelia($cookies, $defaults) {
if (in_array('aelia_cs_selected_currency', $cookies) && !isset($_COOKIE['aelia_cs_selected_currency'])) {
if (!empty($defaults) && isset($defaults['woocommerce_currency'])) {
$_COOKIE['aelia_cs_selected_currency'] = $defaults['woocommerce_currency'];
}
}
if (in_array('aelia_customer_country', $cookies) && !isset($_COOKIE['aelia_customer_country'])) {
$_COOKIE['aelia_customer_country'] = '';
}
if (in_array('aelia_customer_state', $cookies) && !isset($_COOKIE['aelia_customer_state'])) {
$_COOKIE['aelia_customer_state'] = '';
}
if (in_array('aelia_tax_exempt', $cookies) && !isset($_COOKIE['aelia_tax_exempt'])) {
$_COOKIE['aelia_tax_exempt'] = '';
}
}
}