LLMS_Integrations::get_integration( string $id )

Get an integration instance by id


Parameters Parameters

$id

(string) (Required) id of the integration


Top ↑

Return Return

(LLMS_Abstract_Integration|false)


Top ↑

Source Source

File: includes/class.llms.integrations.php

	public function get_integration( $id ) {
		$available = $this->get_available_integrations();
		return isset( $available[ $id ] ) ? $available[ $id ] : false;
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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