AnsPress_Flag::action_flag()
Description #
Ajax callback to process post flag button
Source #
File: includes/flag.php
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | public static function action_flag() { $post_id = (int) ap_sanitize_unslash( 'post_id' , 'r' ); if ( ! anspress_verify_nonce( 'flag_' . $post_id ) || ! is_user_logged_in() ) { ap_ajax_json( 'something_wrong' ); } $post = ap_get_post( $post_id ); $userid = get_current_user_id(); $is_flagged = ap_is_user_flagged( $post_id ); // Die if already flagged. if ( $is_flagged ) { ap_ajax_json( array ( 'success' => false, 'snackbar' => array ( 'message' => sprintf( /* Translators: %s Question or Answer post type label for already reported question or answer. */ __( 'You have already reported this %s.' , 'anspress-question-answer' ), ( 'question' === $post ->post_type ) ? esc_html__( 'question' , 'anspress-question-answer' ) : esc_html__( 'answer' , 'anspress-question-answer' ) ), ), ) ); } ap_add_flag( $post_id ); $count = ap_update_flags_count( $post_id ); ap_ajax_json( array ( 'success' => true, 'action' => array ( 'count' => $count , 'active' => true, ), 'snackbar' => array ( 'message' => sprintf( /* Translators: %s Question or Answer post type label for reported question or answer. */ __( 'Thank you for reporting this %s.' , 'anspress-question-answer' ), ( 'question' === $post ->post_type ) ? esc_html__( 'question' , 'anspress-question-answer' ) : esc_html__( 'answer' , 'anspress-question-answer' ) ), ), ) ); } |
Expand full source code Collapse full source code View on GitHub: includes/flag.php:26
Add your comment