Automattic\WooCommerce\Internal\Admin\ProductReviews
ReviewsCommentsOverrides::__construct()
Constructor.
Method of the class: ReviewsCommentsOverrides{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ReviewsCommentsOverrides = new ReviewsCommentsOverrides(); $ReviewsCommentsOverrides->__construct();
ReviewsCommentsOverrides::__construct() ReviewsCommentsOverrides:: construct code WC 9.6.1
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' ) ); }