LLMS_Integrations::get_integration( string $id )
Get an integration instance by id
Parameters Parameters
- $id
-
(string) (Required) id of the integration
Return Return
(LLMS_Abstract_Integration|false)
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; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |