CForms for WordPress Documentation
Hooks & Events for CForms WordPress
With these events you can use or modify CForms data. For example getting the submitted form data.
Form Submission
These events / actions are triggered during the processing of the form submission in the Frontend of WordPress.
cforms_before_submission_save
Executed before the saving of an form submission.
Parameters: Submission, Form, Fields of the Form
do_action_ref_array('cforms_before_submission_save', array($submission, $form, $fields));
Return: Ignored
cforms_after_submission_save
Executed after the saving of an form submission.
Parameters: Submission, Form, Fields of the Form
do_action_ref_array('cforms_after_submission_save', array($submission, $form, $fields));
Return: Ignored