llms_get_order_status_name( string $status )
Get the human readable status for a LifterLMS status.
Parameters Parameters
- $status
-
(string) (Required) LifterLMS Order Status.
Return Return
(string)
Source Source
File: includes/functions/llms.functions.order.php
function llms_get_order_status_name( $status ) { $statuses = llms_get_order_statuses(); if ( is_array( $statuses ) && isset( $statuses[ $status ] ) ) { $status = $statuses[ $status ]; } return apply_filters( 'lifterlms_get_order_status_name', $status ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.6.0 | Unknown. |
3.0.0 | Introduced. |