| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/INFRABIKEDE/wp-content/plugins/weglot/src/third/wprocket/ |
Upload File : |
<?php
namespace WeglotWP\Third\Wprocket;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use Exception;
use WeglotWP\Models\Hooks_Interface_Weglot;
use WeglotWP\Services\Option_Service_Weglot;
/**
* Wp_Optimize_Cache
*
* @since 3.1.4
*/
class Wprocket_Cache implements Hooks_Interface_Weglot {
/**
* @var Wprocket_Active
*/
private $wprocket_active_services;
/**
* @var Option_Service_Weglot
*/
private $option_services;
/**
* @return void
* @throws Exception
* @since 3.1.4
*/
public function __construct() {
$this->wprocket_active_services = weglot_get_service( 'Wprocket_Active' );
$this->option_services = weglot_get_service( 'Option_Service_Weglot' );
}
/**
* @return void
* @throws Exception
* @since 3.1.4
* @see Hooks_Interface_Weglot
*/
public function hooks() {
if ( ! $this->wprocket_active_services->is_active() ) {
return;
}
if ( ! isset( $_COOKIE['weglot_wp_rocket_cache'] ) && $this->option_services->get_option( 'auto_redirect' ) ) {
add_action( 'send_headers', array( $this, 'set_weglot_wp_rocket_cache' ), 10, 1 );
}
}
public function set_weglot_wp_rocket_cache(){
setcookie( 'weglot_wp_rocket_cache', 'true' ); //phpcs:ignore
}
}