llms_get_transaction_statuses()
Retrieve an array of existing transaction statuses
Return Return
(array)
Source Source
File: includes/llms.functions.core.php
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 | */ 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. |