Description
The “gform_pre_notification_deactivated” action in Gravity Forms is triggered before a notification is deactivated, allowing further actions to be performed.
Usage
add_action( 'gform_pre_notification_deactivated', 'my_function', 10, 2 );
Parameters
Examples
function my_function() { //Do something here } add_action( 'gform_pre_notification_deactivated', 'my_function', 10, 2 );
Source Code
This action hook is located in forms_model.php.