Description #
This filter returns the global notification feed data.
apply_filters('fluentform/global_notification_feed_' . $meta_key, $feedData, $formId);
Usage #
add_filter('fluentform/global_notification_feed_' . $feed->meta_key, function ($feedData, $formId) {
// Do your stuff here
return $feedData;
}, 10, 2);
Parameters #
- $status (boolean) Status
- $formID (int) Form ID
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 -> getNotificationFeeds($formId)