You are here

function webform_workflow_submission_state_form_submit in Webform Workflow 7

Submit callback for changing the state of an existing submission.

File

includes/webform_workflow.forms.inc, line 304
Forms for the Webform Workflow module.

Code

function webform_workflow_submission_state_form_submit($form, &$form_state) {
  $submission = $form_state['submission'];
  $new_state = webform_workflow_state_load($form_state['values']['new_state']);
  $message = $form_state['values']['message'];
  webform_workflow_transition($submission, $new_state, $message, $GLOBALS['user'], TRUE, TRUE);
}