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.


Top ↑

Return Return

(void)


Top ↑

Source Source

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

	public function add_secure_string( $string ) {
		$this->secure_strings[] = (string) $string;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
7.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.