You are here

function node_export_bulk_operation in Node export 7.3

Same name and namespace in other branches
  1. 6.3 node_export.module \node_export_bulk_operation()

Callback for use with hook_node_operations().

1 call to node_export_bulk_operation()
node_export_action_form in ./node_export.module
Export Nodes Action "Configuration" Form
1 string reference to 'node_export_bulk_operation'
node_export_node_operations in ./node_export.module
Implements hook_node_operations().

File

./node_export.module, line 256
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);
}