ActionScheduler_Store::get_status_labelspublicWC 1.0

Get status labels.

Method of the class: ActionScheduler_Store{}

No Hooks.

Returns

Array. string>

Usage

$ActionScheduler_Store = new ActionScheduler_Store();
$ActionScheduler_Store->get_status_labels();

ActionScheduler_Store::get_status_labels() code WC 10.3.6

public function get_status_labels() {
	return array(
		self::STATUS_COMPLETE => __( 'Complete', 'woocommerce' ),
		self::STATUS_PENDING  => __( 'Pending', 'woocommerce' ),
		self::STATUS_RUNNING  => __( 'In-progress', 'woocommerce' ),
		self::STATUS_FAILED   => __( 'Failed', 'woocommerce' ),
		self::STATUS_CANCELED => __( 'Canceled', 'woocommerce' ),
	);
}