ActionScheduler_Store::get_status_labels
Get status labels.
Method of the class: ActionScheduler_Store{}
No Hooks.
Returns
Array
Usage
$ActionScheduler_Store = new ActionScheduler_Store(); $ActionScheduler_Store->get_status_labels();
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' ),
);
}