WC_Report_Stock::output_reportpublicWC 1.0

Output the report.

Method of the class: WC_Report_Stock{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WC_Report_Stock = new WC_Report_Stock();
$WC_Report_Stock->output_report();

WC_Report_Stock::output_report() code WC 10.3.6

public function output_report() {

	$this->prepare_items();
	echo '<div id="poststuff" class="woocommerce-reports-wide">';
	$this->display();
	echo '</div>';
}