Aug 11th, 2017, 4:35 AM
I had this issue was well, so in all of my forms, I created a field `created_by`. I them modified the code in the "\global\code\submissions.php" to include the following.
mysql_query("UPDATE {$g_table_prefix}form_{$form_id} SET created_by = '$name' WHERE submission_id = $new_submission_id");
I placed it right after the stock code of:
$new_submission_id = mysql_insert_id();
extract(ft_process_hook_calls("end", compact("form_id", "now", "ip", "new_submission_id"), array()), EXTR_OVERWRITE);
What it does is update the 'created_by' field with the client user id.
I then used the Extended Field Module to create a field equal to the username and set the forms up to filter off that field.
mysql_query("UPDATE {$g_table_prefix}form_{$form_id} SET created_by = '$name' WHERE submission_id = $new_submission_id");
I placed it right after the stock code of:
$new_submission_id = mysql_insert_id();
extract(ft_process_hook_calls("end", compact("form_id", "now", "ip", "new_submission_id"), array()), EXTR_OVERWRITE);
What it does is update the 'created_by' field with the client user id.
I then used the Extended Field Module to create a field equal to the username and set the forms up to filter off that field.