WP_REST_Comments_Controller::handle_status_param()protectedWP 4.7.0

Sets the comment_status of a given comment object when creating or updating a comment.

Метод класса: WP_REST_Comments_Controller{}

Хуков нет.

Возвращает

true|false. Whether the status was changed.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->handle_status_param( $new_status, $comment_id );
$new_status(строка|int) (обязательный)
New comment status.
$comment_id(int) (обязательный)
Comment ID.

Список изменений

С версии 4.7.0 Введена.

Код WP_REST_Comments_Controller::handle_status_param() WP 6.5.2

protected function handle_status_param( $new_status, $comment_id ) {
	$old_status = wp_get_comment_status( $comment_id );

	if ( $new_status === $old_status ) {
		return false;
	}

	switch ( $new_status ) {
		case 'approved':
		case 'approve':
		case '1':
			$changed = wp_set_comment_status( $comment_id, 'approve' );
			break;
		case 'hold':
		case '0':
			$changed = wp_set_comment_status( $comment_id, 'hold' );
			break;
		case 'spam':
			$changed = wp_spam_comment( $comment_id );
			break;
		case 'unspam':
			$changed = wp_unspam_comment( $comment_id );
			break;
		case 'trash':
			$changed = wp_trash_comment( $comment_id );
			break;
		case 'untrash':
			$changed = wp_untrash_comment( $comment_id );
			break;
		default:
			$changed = false;
			break;
	}

	return $changed;
}