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_Settings_Integrations::get_default_settings()
Get default settings array for the main integrations tab
Return Return
(array)
Source Source
File: includes/admin/settings/class.llms.settings.integrations.php
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | private function get_default_settings() { $settings = array ( array ( 'type' => 'sectionstart' , 'id' => 'checkout_settings_integrations_list_start' , ), array ( 'title' => __( 'Integrations' , 'lifterlms' ), 'type' => 'title' , 'id' => 'checkout_settings_integrations_list_title' , ), array ( 'value' => $this ->get_table_html(), 'type' => 'custom-html' , ), array ( 'type' => 'sectionend' , 'id' => 'checkout_settings_integrations_list_end' , ), ); return apply_filters( 'llms_integrations_settings_default' , $settings ); } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.18.2 | Introduced. |