llms_get_transaction_statuses()

Retrieve an array of existing transaction statuses


Return Return

(array)


Top ↑

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',
        )
    );


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.