nf_notification_before_process
The Ninja Forms nf notification before process hook.
Description
Parameters (1)
- 0. $id (unknown)
- The id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'nf_notification_before_process', $id );
- The following example is for adding a hook callback.
- // define the nf_notification_before_process callback
- function action_nf_notification_before_process( $id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'nf_notification_before_process', 'action_nf_notification_before_process', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'nf_notification_before_process', 'action_nf_notification_before_process', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /deprecated/classes/notifications.php
- do_action( 'nf_notification_before_process', $id );