LLMS_Payment_Gateway::get_api_mode()
Get API mode
Description Description
If test is not supported will return "live".
Return Return
(string)
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' ; } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |