LLMS_Payment_Gateway::get_option_name( string $key )
Retrieve an option name specific to the gateway Used to retrieve options from the wp_options table where applicable
Description Description
Parameters Parameters
- $key
-
(string) (Required) option key, ie "title"
Return Return
(string)
Source Source
File: includes/abstracts/abstract.llms.payment.gateway.php
public function get_option_name( $key ) { return 'llms_gateway_' . $this->id . '_' . $key; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |