BP_REST_Reply_Actions_Endpoint::rest_update_reply_trash( int $reply_id, boolean $value )

Move reply in trash and untrash.

Description

Parameters

$reply_id

(int) (Required) Reply ID.

$value

(boolean) (Required) Action value.

Return

(bool|mixed)

Source

File: bp-forums/classes/class-bp-rest-reply-actions-endpoint.php

	protected function rest_update_reply_trash( $reply_id, $value ) {

		// What is the user doing here?
		if ( ! current_user_can( 'moderate', $reply_id ) ) {
			return new WP_Error(
				'bp_rest_authorization_required',
				__( 'You do not have permission to do this.', 'buddyboss' ),
				array(
					'status' => 404,
				)
			);
		}

		$post_status = get_post_status( $reply_id );

		if (
			'trash' === $post_status
			&& empty( $value )
		) {
			$status = wp_untrash_post( $reply_id );
		} elseif (
			'trash' !== $post_status
			&& ! empty( $value )
		) {
			$status = wp_trash_post( $reply_id );
		}

		return ( ! empty( $status ) && ! is_wp_error( $status ) ? true : $status );
	}

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.