Automattic\WooCommerce\Internal\Admin\ProductReviews

Reviews::edit_comments_screen_text()publicWC 1.0

Method of the class: Reviews{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Reviews = new Reviews();
$Reviews->;

Reviews::edit_comments_screen_text() code WC 9.8.5

}

return $parent_file;
	}

	/**
	 * Returns a new instance of `ReviewsListTable`, with the screen argument specified.
	 *
	 * @return ReviewsListTable
	 */
	protected function make_reviews_list_table(): ReviewsListTable {
return new ReviewsListTable( array( 'screen' => $this->reviews_page_hook ? $this->reviews_page_hook : 'product_page_product-reviews' ) );
	}

	/**
	 * Initializes the list table.
	 *
	 * @return void
	 *
	 * @internal For exclusive usage of WooCommerce core, backwards compatibility not guaranteed.
	 */
	public function load_reviews_screen(): void {
$this->reviews_list_table = $this->make_reviews_list_table();
$this->reviews_list_table->process_bulk_action();
	}

	/**
	 * Renders the Reviews page.
	 *
	 * @return void
	 */