| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.11/wp-content/plugins/woocommerce/src/Internal/Admin/ProductReviews/ |
Upload File : |
<?php
namespace Automattic\WooCommerce\Internal\Admin\ProductReviews;
/**
* A utility class for handling comments that are product reviews.
*/
class ReviewsUtil {
/**
* Modifies the moderation URLs in the email notifications for product reviews.
*
* @param string $message The email notification message.
* @param int $comment_id The comment ID.
* @return string The modified email notification message.
*/
public static function modify_product_review_moderation_urls( $message, $comment_id ) {
$comment = get_comment( $comment_id );
// Only modify URLs for product reviews.
if ( ! $comment || get_post_type( $comment->comment_post_ID ) !== 'product' ) {
return $message;
}
// Replace the WordPress comment moderation URLs with WooCommerce product review URLs.
$product_reviews_url = admin_url( 'edit.php?post_type=product&page=product-reviews' );
// Replace the moderation panel URL (this is the "show all reviews pending" link).
$message = str_replace(
admin_url( 'edit-comments.php?comment_status=moderated#wpbody-content' ),
$product_reviews_url . '&comment_status=moderated',
$message
);
return $message;
}
/**
* Removes product reviews from the edit-comments page to fix the "Mine" tab counter.
*
* @param array|mixed $clauses A compacted array of comment query clauses.
* @param \WP_Comment_Query $comment_query The WP_Comment_Query instance being filtered.
*
* @return array|mixed
*/
public static function comments_clauses_without_product_reviews( $clauses, $comment_query ) {
global $wpdb;
if ( ! empty( $comment_query->query_vars['post_type'] ) ) {
$post_type = $comment_query->query_vars['post_type'];
if ( ! is_array( $post_type ) ) {
$post_type = explode( ',', $post_type );
}
if ( in_array( 'product', $post_type, true ) ) {
return $clauses;
}
}
/**
* Any comment queries with these values are likely to be custom handling where we don't want to change default behavior.
* This may change for the `type` query vars in the future if we break out review replies as their own type.
*/
foreach ( array( 'ID', 'parent', 'parent__in', 'post_author__in', 'post_author', 'post_name', 'type', 'type__in', 'type__not_in', 'post_type__in', 'comment__in', 'comment__not_in' ) as $arg ) {
if ( ! empty( $comment_query->query_vars[ $arg ] ) ) {
return $clauses;
}
}
if ( ! empty( $comment_query->query_vars['post_id'] ) && absint( $comment_query->query_vars['post_id'] ) > 0 ) {
if ( 'product' === get_post_type( absint( $comment_query->query_vars['post_id'] ) ) ) {
return $clauses;
}
}
if ( ! empty( $comment_query->query_vars['post__in'] ) ) {
$post_ids = wp_parse_id_list( $comment_query->query_vars['post__in'] );
// Prime caches to reduce future queries.
_prime_post_caches( $post_ids, false, false );
foreach ( $post_ids as $post_id ) {
if ( 'product' === get_post_type( $post_id ) ) {
return $clauses;
}
}
}
$clauses['join'] .= " LEFT JOIN {$wpdb->posts} AS wp_posts_to_exclude_reviews ON comment_post_ID = wp_posts_to_exclude_reviews.ID ";
$clauses['where'] .= ( trim( $clauses['where'] ) ? ' AND ' : '' ) . " wp_posts_to_exclude_reviews.post_type NOT IN ('product') ";
return $clauses;
}
}