| Server IP : 87.98.154.146 / Your IP : 216.73.216.165 Web Server : Apache System : Linux webm004.cluster126.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : ohklomafyi ( 52085) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/ohklomafyi/www/wp-content/plugins/shortpixel-image-optimiser/class/external/ |
Upload File : |
<?php
namespace ShortPixel;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
use ShortPixel\ShortPixelLogger\ShortPixelLogger as Log;
class Spai
{
public function __construct()
{
add_action('plugins_loaded', array($this, 'addHooks'));
}
public function addHooks()
{
if (\wpSPIO()->env()->plugin_active('spai'))
{
// Prevent SPAI doing its stuff to our JSON returns.
$hook_upon = array('shortpixel_image_processing', 'shortpixel_ajaxRequest');
if (wp_doing_ajax() &&
// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is not a form
isset($_REQUEST['action']) &&
// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is not a form
in_array($_REQUEST['action'], $hook_upon) )
{
$this->preventCache();
}
}
}
public function preventCache()
{
if (! defined('DONOTCDN'))
{
define('DONOTCDN', true);
}
}
}
$s = new Spai();