function lingotek_node_update in Lingotek Translation 7.3
Same name and namespace in other branches
- 6 lingotek.module \lingotek_node_update()
- 7.2 lingotek.module \lingotek_node_update()
- 7.4 lingotek.module \lingotek_node_update()
Implements hook_node_update().
1 call to lingotek_node_update()
- lingotek_node_insert in ./
lingotek.module - Implements hook_node_insert().
File
- ./
lingotek.module, line 788
Code
function lingotek_node_update($node) {
if (module_exists('workbench_moderation') && isset($node->workbench_moderation)) {
return;
}
else {
lingotek_upload_document($node);
}
}