function lingotek_push_form_submit in Lingotek Translation 7.6
Same name and namespace in other branches
- 7.7 lingotek.page.inc \lingotek_push_form_submit()
- 7.2 lingotek.page.inc \lingotek_push_form_submit()
- 7.3 lingotek.page.inc \lingotek_push_form_submit()
- 7.4 lingotek.page.inc \lingotek_push_form_submit()
- 7.5 lingotek.page.inc \lingotek_push_form_submit()
Submit handler for the lingotek_push_form form.
File
- ./
lingotek.page.inc, line 173 - Lingotek Tab for Nodes
Code
function lingotek_push_form_submit($form, $form_state) {
$node = lingotek_node_load_default($form_state['values']['node_id']);
// clear any caching from entitycache module
if (module_exists('entitycache')) {
cache_clear_all($node->nid, 'cache_entity_node');
}
lingotek_entity_upload($node, 'node');
}