Automattic\WooCommerce\Blocks\BlockTypes

FilterWrapper{}WC 1.0

FilterWrapper class.

No Hooks.

Usage

$FilterWrapper = new FilterWrapper();
// use class methods

Methods

  1. protected get_block_type_style()

FilterWrapper{} code WC 8.7.0

class FilterWrapper extends AbstractBlock {
	/**
	 * Block name.
	 *
	 * @var string
	 */
	protected $block_name = 'filter-wrapper';

	/**
	 * Get the frontend style handle for this block type.
	 *
	 * @return null
	 */
	protected function get_block_type_style() {
		return null;
	}
}