function cmis_sync_node_update in CMIS API 7
Same name and namespace in other branches
- 7.2 cmis_sync/cmis_sync.module \cmis_sync_node_update()
Implements hook_node_update
Parameters
$node:
Return value
unknown_type
File
- cmis_sync/
cmis_sync.module, line 79
Code
function cmis_sync_node_update($node) {
if (!isset($node->cmis_sync_disabled)) {
module_load_include('drupal.inc', 'cmis_sync');
try {
_cmis_sync_drupal_cmis_update($node, 'update');
} catch (CMISException $e) {
cmis_error_handler('cmis_sync_nodeapi', $e);
}
}
}