llms_get_transaction_statuses()
Retrieve an array of existing transaction statuses
Return Return
(array)
Source Source
File: includes/llms.functions.core.php
*/
function llms_get_transaction_statuses() {
/**
* Filter the transaction statuses
*
* @since Unknown
*
* @param $statuses string[] Names of the possible transaction statuses.
*/
return apply_filters(
'llms_get_transaction_statuses',
array(
'llms-txn-failed',
'llms-txn-pending',
'llms-txn-refunded',
'llms-txn-succeeded',
)
);
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |