AnsPress_Post_Status()
Description #
AnsPress post status helper class.
Source #
File: includes/post-status.php
class AnsPress_Post_Status { /** * Register post status for question and answer CPT */ public static function register_post_status() { register_post_status( 'moderate', array( 'label' => __( 'Moderate', 'anspress-question-answer' ), 'public' => true, 'show_in_admin_all_list' => false, 'show_in_admin_status_list' => true, // translators: %s is count of post awaiting moderation. 'label_count' => _n_noop( 'Moderate <span class="count">(%s)</span>', 'Moderate <span class="count">(%s)</span>', 'anspress-question-answer' ), ) ); register_post_status( 'private_post', array( 'label' => __( 'Private', 'anspress-question-answer' ), 'public' => true, 'show_in_admin_all_list' => false, 'show_in_admin_status_list' => true, // translators: %s is count of private post. 'label_count' => _n_noop( 'Private Post <span class="count">(%s)</span>', 'Private Post <span class="count">(%s)</span>', 'anspress-question-answer' ), ) ); } /** * Handle change post status ajax request. * * @since 2.1 */ public static function change_post_status() { $post_id = (int) ap_sanitize_unslash( 'post_id', 'request' ); $status = ap_sanitize_unslash( 'status', 'request' ); // Check if user has permission else die. if ( ! is_user_logged_in() || ! in_array( $status, array( 'publish', 'moderate', 'private_post', 'trash' ), true ) || ! anspress_verify_nonce( 'change-status-' . $status . '-' . $post_id ) || ! ap_user_can_change_status( $post_id ) ) { ap_ajax_json( array( 'success' => false, 'snackbar' => array( 'message' => __( 'You are not allowed to change post status', 'anspress-question-answer' ) ), ) ); } $post = ap_get_post( $post_id ); $update_data = array(); $update_data['post_status'] = $status; $update_data['ID'] = $post->ID; wp_update_post( $update_data ); // Unselect as best answer if moderate. if ( 'answer' === $post->post_type && 'moderate' === $status && ap_have_answer_selected( $post->post_parent ) ) { ap_unset_selected_answer( $post->ID ); } do_action( 'ap_post_status_updated', $post->ID ); $activity_type = 'moderate' === $post->post_status ? 'approved_' . $post->post_type : 'changed_status'; ap_update_post_activity_meta( $post_id, $activity_type, get_current_user_id() ); ap_ajax_json( array( 'success' => true, 'snackbar' => array( 'message' => sprintf( /* Translators: %s Question or Answer post type label for post status change */ __( '%s status updated successfully', 'anspress-question-answer' ), ( 'question' === $post->post_type ) ? esc_html__( 'Question', 'anspress-question-answer' ) : esc_html__( 'Answer', 'anspress-question-answer' ) ), ), 'action' => array( 'active' => true ), 'postmessage' => ap_get_post_status_message( $post->ID ), 'newStatus' => $status, ) ); } }
Expand full source code Collapse full source code View on GitHub: includes/post-status.php:23
Add your comment