function lingotek_push_form in Lingotek Translation 7.2
Same name and namespace in other branches
- 7.7 lingotek.page.inc \lingotek_push_form()
- 7.3 lingotek.page.inc \lingotek_push_form()
- 7.4 lingotek.page.inc \lingotek_push_form()
- 7.5 lingotek.page.inc \lingotek_push_form()
- 7.6 lingotek.page.inc \lingotek_push_form()
Form constructor for the Lingotek Content push form. (Upload to Lingotek)
1 string reference to 'lingotek_push_form'
- lingotek_pm in ./
lingotek.page.inc - Page callback for the Lingotek local task on node detail pages.
File
- ./
lingotek.page.inc, line 11 - Lingotek Tab for Nodes
Code
function lingotek_push_form($form, $form_state, $node) {
$form = array();
$form['content_push'] = array(
'#type' => 'fieldset',
'#title' => t('Upload'),
'#description' => t("Upload this node's content to Lingotek for translation."),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['content_push']['submit'] = array(
'#type' => 'submit',
'#value' => t('Upload'),
);
$form['node_id'] = array(
'#type' => 'hidden',
'#value' => $node->nid,
);
return $form;
}