LLMS_Payment_Gateway::add_secure_string( string $string )
Adds a string to the gateway’s list of secure strings.
Parameters Parameters
- $string
-
(string) (Required) The string to add.
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.payment.gateway.php
public function add_secure_string( $string ) {
$this->secure_strings[] = (string) $string;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 7.0.0 | Introduced. |