function node_export_bulk_operation in Node export 6.3
Same name and namespace in other branches
- 7.3 node_export.module \node_export_bulk_operation()
Callback for use with hook_node_operations().
1 string reference to 'node_export_bulk_operation'
- node_export_node_operations in ./
node_export.module - Implementation of hook_node_operations().
File
- ./
node_export.module, line 237 - The Node export module.
Code
function node_export_bulk_operation($nodes = NULL, $format = NULL, $delivery = NULL) {
module_load_include('inc', 'node_export', 'node_export.pages');
return node_export_gui($nodes, $format, $delivery);
}