WC_Report_Sales_By_Product::current_filters()publicWC 1.0

Output current filters.

Method of the class: WC_Report_Sales_By_Product{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Report_Sales_By_Product = new WC_Report_Sales_By_Product();
$WC_Report_Sales_By_Product->current_filters();

WC_Report_Sales_By_Product::current_filters() code WC 8.7.0

public function current_filters() {

	$this->product_ids_titles = array();

	foreach ( $this->product_ids as $product_id ) {

		$product = wc_get_product( $product_id );

		if ( $product ) {
			$this->product_ids_titles[] = $product->get_formatted_name();
		} else {
			$this->product_ids_titles[] = '#' . $product_id;
		}
	}

	echo '<p><strong>' . wp_kses_post( implode( ', ', $this->product_ids_titles ) ) . '</strong></p>';
	echo '<p><a class="button" href="' . esc_url( remove_query_arg( 'product_ids' ) ) . '">' . esc_html__( 'Reset', 'woocommerce' ) . '</a></p>';
}