D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sadaunjx
/
hala-news.com
/
wp-content
/
plugins
/
ga-in
/
common
/
Filename :
ajax-actions.php
back
Copy
<?php /** * Copyright 2013 Alin Marcu * License: GPLv2 or later * License URI: http://www.gnu.org/licenses/gpl-2.0.html */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit(); if ( ! class_exists( 'GAINWP_Common_Ajax' ) ) { final class GAINWP_Common_Ajax { private $gainwp; public function __construct() { $this->gainwp = GAINWP(); if ( GAINWP_Tools::check_roles( $this->gainwp->config->options['access_back'] ) || GAINWP_Tools::check_roles( $this->gainwp->config->options['access_front'] ) ) { add_action( 'wp_ajax_gainwp_set_error', array( $this, 'ajax_set_error' ) ); } } /** * Ajax handler for storing JavaScript Errors * * @return json|int */ public function ajax_set_error() { if ( ! isset( $_POST['gainwp_security_set_error'] ) || ! ( wp_verify_nonce( $_POST['gainwp_security_set_error'], 'gainwp_backend_item_reports' ) || wp_verify_nonce( $_POST['gainwp_security_set_error'], 'gainwp_frontend_item_reports' ) ) ) { wp_die( - 40 ); } $timeout = 24 * 60 * 60; GAINWP_Tools::set_error( $_POST['response'], $timeout ); wp_die(); } } }