LLMS_Payment_Gateway::get_api_mode()

Get API mode


Description Description

If test is not supported will return "live".


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.payment.gateway.php

423
424
425
426
427
428
public function get_api_mode() {
    if ( $this->supports( 'test_mode' ) && $this->is_test_mode_enabled() ) {
        return 'test';
    }
    return 'live';
}


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.