ANON_HF_SUBMITFORM::hf_submit_form( $submission, $form, $misc )
Validation function when the trigger action is hit
Contents
Parameters Parameters
- $entry_id
-
(Required)
- $form_id
-
(Required)
Source Source
File: src/integrations/happyforms/triggers/anon-hf-submitform.php
public function hf_submit_form( $submission, $form, $misc ) { $user_id = get_current_user_id(); $args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'post_id' => intval( $form['ID'] ), 'user_id' => intval( $user_id ), ]; $result = Automator()->process->user->maybe_add_trigger_entry( $args, false ); if ( $result ) { foreach ( $result as $r ) { if ( true === $r['result'] ) { if ( isset( $r['args'] ) && isset( $r['args']['get_trigger_id'] ) ) { //Saving form values in trigger log meta for token parsing! $hf_args = [ 'trigger_id' => (int) $r['args']['trigger_id'], 'meta_key' => $this->trigger_meta, 'user_id' => $user_id, 'trigger_log_id' => $r['args']['get_trigger_id'], 'run_number' => $r['args']['run_number'], ]; Automator()->helpers->recipe->happyforms->extract_save_hf_fields( $submission, $form['ID'], $hf_args ); } Automator()->process->user->maybe_trigger_complete( $r['args'] ); } } } }
Expand full source code Collapse full source code View on Github