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_".


Top ↑

Return Return

(string)


Top ↑

Source Source

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

	protected function get_option_prefix() {
		return parent::get_option_prefix() . $this->id . '_';
	}


Top ↑

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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