function lingotek_get_change_workflow_form_callback in Lingotek Translation 7.6
Same name and namespace in other branches
- 7.7 lingotek.module \lingotek_get_change_workflow_form_callback()
- 7.4 lingotek.module \lingotek_get_change_workflow_form_callback()
- 7.5 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
2 string references to 'lingotek_get_change_workflow_form_callback'
File
- ./
lingotek.module, line 2416
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'],
);
}