Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Data::get_integrations_data()
Get data about existing llms integrations
Description Description
Return Return
(array)
Source Source
File: includes/class.llms.data.php
private static function get_integrations_data() { $data = array(); $integrations = LLMS()->integrations(); foreach ( $integrations->integrations() as $obj ) { // @todo upgrade this when integration abstract is finished if ( method_exists( $obj, 'is_available' ) ) { $data[ $obj->title ] = $obj->is_available() ? 'Yes' : 'No'; } } return $data; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: