I've created a front-end editor that is pulling in the information from the entry with code like this...
$entries = RGFormsModel::get_leads(2);
foreach($entries as $entry){
$current_user_data['first_name'] = $entry['24'];
}
What is the hook to update the entry data for that form when someone submits it? I'm guessing I'll use the "gform_pre_submission" hook.
Is this something easy to do?