LLMS_Payment_Gateways::get_payment_gateways()

Get all registered payment gateways


Description Description


Return Return

(array)


Top ↑

Source Source

File: includes/class.llms.payment.gateways.php

	public function get_payment_gateways() {

		$gateways = array();

		foreach ( $this->payment_gateways as $gateway ) {

			$gateways[ $gateway->id ] = $gateway;

		}

		return $gateways;

	}


Top ↑

User Contributed Notes User Contributed Notes

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