nf_email_notification_process_setting
The Ninja Forms nf email notification process setting hook.
Description
apply_filters( 'nf_email_notification_process_setting', (unknown) $setting, (string) $setting_name, (unknown) $id );
Parameters (3)
- 0. $setting (unknown)
- The setting.
- 1. $setting_name (string)
- The setting name.
- 2. $id (unknown)
- The id.
Usage
- To run the hook, copy the example below.
- $setting = apply_filters( 'nf_email_notification_process_setting', $setting, $setting_name, $id );
- if ( !empty( $setting ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the nf_email_notification_process_setting callback
- function filter_nf_email_notification_process_setting( $setting, $setting_name, $id ) {
- // make filter magic happen here...
- return $setting;
- };
- // add the filter
- add_filter( 'nf_email_notification_process_setting', 'filter_nf_email_notification_process_setting', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'nf_email_notification_process_setting', 'filter_nf_email_notification_process_setting', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /deprecated/classes/notification-email.php
- return apply_filters( 'nf_email_notification_process_setting', $setting, $setting_name, $id );