You are here

function export_node_operations in Node export 6

Same name and namespace in other branches
  1. 5.2 export.module \export_node_operations()

Implementation of hook_node_operations.

File

./export.module, line 109

Code

function export_node_operations() {
  $operations = array();
  if (user_access('export bulk nodes')) {
    $operations = array(
      'export' => array(
        'label' => t('Export nodes'),
        'callback' => 'export_node_bulk',
      ),
    );
  }
  return $operations;
}