Description
The “gform_post_form_trashed” action is triggered after a form is moved to trash in Gravity Forms, allowing further actions to be performed.
Usage
add_action( 'gform_post_form_trashed', 'my_function', 10, 1 );
Parameters
- $form_id int
The ID of the form being moved to trash.
Examples
add_action( 'gform_post_form_trashed', 'my_post_form_trashed_func', 10);
function my_post_form_trashed_func( $form_id ) {
// perform action after a form has been moved to the trash
}
Source Code
This action hook is located in forms_model.php.