Description #
This filter is used in the integration manager to save integration settings using the integration key.
apply_filters('fluentform/global_integration_settings_' . $settingsKey, []);
Usage #
add_filter('fluentform/global_integration_settings_' . $this->integrationKey, function($settings){
return $settings;
},10,1);
Parameters #
- $settings (array) Integration Settings
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\App\Services\Integration\GlobalIntegrationManager -> getGlobalSettingsAjax()