Automattic\WooCommerce\Internal\Admin\ProductReviews

ReviewsCommentsOverrides::__constructpublicWC 1.0

Constructor.

Method of the class: ReviewsCommentsOverrides{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ReviewsCommentsOverrides = new ReviewsCommentsOverrides();
$ReviewsCommentsOverrides->__construct();

ReviewsCommentsOverrides::__construct() code WC 10.3.6

public function __construct() {
	add_action( 'admin_notices', array( $this, 'display_notices' ) );
	add_filter( 'woocommerce_dismiss_admin_notice_capability', array( $this, 'get_dismiss_capability' ), 10, 2 );
	add_filter( 'comments_list_table_query_args', array( $this, 'exclude_reviews_from_comments' ) );
}