Description
Triggered immediately before the form deletion confirmation appears.
Usage
1 | add_action( 'gform_pre_confirmation_deleted' , 'my_function' , 10, 2 ); |
Parameters
Examples
1 2 3 4 5 | add_action( 'gform_pre_confirmation_deleted' , 'my_pre_confirmation_deleted_func' 10, 2); function my_pre_confirmation_deleted_func( $confirmation_id , $form ) { // perform action before a confirmation is deleted } |
Source Code
This action hook is located in preview.php.