LLMS_Payment_Gateway::get_option_prefix()
Retrieve a prefix for options
Description Description
Appends the gateway’s ID to the default option prefix, eg: "llms_gateway_manual_".
Return Return
(string)
Source Source
File: includes/abstracts/abstract.llms.payment.gateway.php
protected function get_option_prefix() {
return parent::get_option_prefix() . $this->id . '_';
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 5.3.0 | Introduced. |