Conditions | 4 |
Paths | 4 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | function give_set_notification_status_handler() { |
||
19 | $notification_id = isset( $_POST['notification_id'] ) ? give_clean( $_POST['notification_id'] ) : ''; |
||
20 | if ( ! empty( $notification_id ) && give_update_option( "{$notification_id}_notification", give_clean( $_POST['status'] ) ) ) { |
||
21 | wp_send_json_success(); |
||
22 | } |
||
23 | |||
24 | wp_send_json_error(); |
||
25 | } |
||
26 | |||
28 |