function gathercontent_update_process in GatherContent 7.3
Same name and namespace in other branches
- 8.3 gathercontent.module \gathercontent_update_process()
Batch operation callback.
We are doing real update thing here.
Parameters
object $node: Object of content we want to update.
string $uuid: UUID of operation.
string $node_update_method: Name of the node update method.
array $context: Context of operation.
1 string reference to 'gathercontent_update_process'
- gathercontent_views_vbo_update in ./
gathercontent.module - Submit callback for `views_bulk_operations_confirm_form`.
File
- ./
gathercontent.module, line 1238
Code
function gathercontent_update_process($node, $uuid, $node_update_method, &$context) {
_gathercontent_fetcher($node->gathercontent_id, $uuid, 0, NULL, $node, NULL, $node_update_method);
$context['results']['uuid'] = $uuid;
}