Automattic\WooCommerce\Internal\Admin\ProductReviews

Reviews::display_notices()protectedWC 1.0

Displays notices on the Reviews page.

Method of the class: Reviews{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->display_notices() : void;

Reviews::display_notices() code WC 8.7.0

protected function display_notices() : void {

	if ( $this->is_reviews_page() ) {
		$this->maybe_display_reviews_bulk_action_notice();
	}
}