You are here

function lingotek_get_change_workflow_form_callback in Lingotek Translation 7.7

Same name and namespace in other branches
  1. 7.4 lingotek.module \lingotek_get_change_workflow_form_callback()
  2. 7.5 lingotek.module \lingotek_get_change_workflow_form_callback()
  3. 7.6 lingotek.module \lingotek_get_change_workflow_form_callback()

Workflow form callback.

Parameters

array $form: the form loaded

array $form_state: the form state (content)

Return value

string a workflow UUID

1 string reference to 'lingotek_get_change_workflow_form_callback'
lingotek_get_change_workflow_form in ./lingotek.module

File

./lingotek.module, line 2773

Code

function lingotek_get_change_workflow_form_callback($form, $form_state) {
  return array(
    $form['lingotek']['prefill_phase_select'],
    $form['lingotek']['prefill_phases_checkbox'],
    $form['lingotek']['workflow_id'],
  );
}