| Server IP : 172.67.75.225 / Your IP : 216.73.216.185 Web Server : nginx/1.27.1 System : Linux us-1 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 User : vinodai ( 3134) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v1396/wwwindicidolscom/public_html/wp-content/plugins/hostinger/includes/Admin/ |
Upload File : |
<?php
namespace Hostinger\Admin;
defined( 'ABSPATH' ) || exit;
class Ajax {
private const TWO_DAYS = 86400 * 2;
public const AJAX_METHOD_PREFIX = 'wp_ajax_hostinger_';
public const HIDE_PLUGIN_SPLIT_NOTICE = 'hts_plugin_split_notice_hidden';
public const AJAX_EVENTS = array(
'dismiss_plugin_split_notice',
);
public function __construct() {
add_action( 'admin_init', array( $this, 'define_ajax_events' ), 0 );
}
public function define_ajax_events(): void {
foreach ( self::AJAX_EVENTS as $event ) {
add_action( self::AJAX_METHOD_PREFIX . $event, array( $this, $event ) );
}
}
public function dismiss_plugin_split_notice(): void {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( $_POST['nonce'] ) : '';
// @codeCoverageIgnoreStart
if ( ! wp_verify_nonce( $nonce, 'hts_close_plugin_split' ) ) {
wp_send_json_error( 'Invalid nonce' );
}
// @codeCoverageIgnoreEnd
update_option( self::HIDE_PLUGIN_SPLIT_NOTICE, true );
}
}