Skip to content

Commit

Permalink
`gpnf-set-created-by-property-on-child-entries-after-user-registratio…
Browse files Browse the repository at this point in the history
…n.php`: Added new snippet.

~ Fix.
  • Loading branch information
sbassah authored and saifsultanc committed Jan 11, 2025
1 parent 23bf3d1 commit 7606302
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
* Gravity Perks // Nested Forms // Set Created By Propery on Child Entries After User Account Registration.
* https://gravitywiz.com/documentation/gravity-forms-nested-forms/
*
* Set the created by property of the child entries that is embedded on a user registration form
* Set the created by property of the child entries that is embedded on a user registration form
* with the user id of the account that is created after the parent form is submittted.
*
* Instructions:
* 1. Install per https://gravitywiz.com/documentation/how-do-i-install-a-snippet/
* 2. Configure the snippet based on inline instructions.
*/
add_action( 'gform_user_registered', 'add_custom_user_meta', 10, 4 );
function add_custom_user_meta( $user_id, $feed, $entry, $user_pass ) {
// Update '123' with the Id of the form.
if ( $entry['form_id'] !== '123' ){
return;
}

$parent_entry = new GPNF_Entry( $entry );
$child_entries = $parent_entry->get_child_entries();
add_action( 'gform_user_registered', 'add_created_by_property', 10, 4 );
function add_created_by_property( $user_id, $feed, $entry, $user_pass ) {
// Update '123' with the Id of the form.
if ( $entry['form_id'] !== '123' ) {
return;
}

foreach ( $child_entries as $child_entry ) {
GFAPI::update_entry_property( $child_entry['id'], 'created_by', $user_id );
$child_entry['created_by'] = $user_id;
}
$parent_entry = new GPNF_Entry( $entry );
$child_entries = $parent_entry->get_child_entries();

foreach ( $child_entries as $child_entry ) {
GFAPI::update_entry_property( $child_entry['id'], 'created_by', $user_id );
$child_entry['created_by'] = $user_id;
}
}

0 comments on commit 7606302

Please sign in to comment.