WC_Helper::get_filters()public staticWC 1.0

Get available subscriptions filters.

Method of the class: WC_Helper{}

No Hooks.

Return

Array. An array of filter keys and labels.

Usage

$result = WC_Helper::get_filters();

WC_Helper::get_filters() code WC 8.7.0

public static function get_filters() {
	$filters = array(
		'all'              => __( 'All', 'woocommerce' ),
		'active'           => __( 'Active', 'woocommerce' ),
		'inactive'         => __( 'Inactive', 'woocommerce' ),
		'installed'        => __( 'Installed', 'woocommerce' ),
		'update-available' => __( 'Update Available', 'woocommerce' ),
		'expiring'         => __( 'Expiring Soon', 'woocommerce' ),
		'expired'          => __( 'Expired', 'woocommerce' ),
		'download'         => __( 'Download', 'woocommerce' ),
	);

	return $filters;
}