Forked from zackkatz/gravityview-trigger-gform_after_submission-form-12.php
Last active
March 1, 2019 11:46
-
-
Save Cristilupchian/502a05c61d2714afa6e253888240375c to your computer and use it in GitHub Desktop.
GravityView - Trigger the `gform_after_submission` action when an entry is edited, but ONLY for Form #12.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* GravityView doesn't trigger the `gform_after_submission` action when editing entries. This does that, | |
* but ONLY FOR FORM #12. | |
* | |
* @param array $form | |
* @param int $entry_id ID of the entry being updated | |
* @param GravityView_Edit_Entry_Render $object | |
* | |
* @return void | |
*/ | |
function gravityview_trigger_gform_after_submission_form_20( $form = array(), $entry_id = array(), $object ) { | |
// Only trigger for Form ID #12 - update with your form ID | |
if( 20 !== (int) $form['id'] ) { | |
return; | |
} | |
gf_do_action( array( 'gform_after_submission', $form['id'] ), $object->entry, $form ); | |
} | |
add_action( 'gravityview/edit_entry/after_update', 'gravityview_trigger_gform_after_submission_form_20', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment