You are here

function node_export_perm in Node export 6.2

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

Implementation of hook_perm().

File

./node_export.module, line 30
The Node Export module.

Code

function node_export_perm() {
  return array(
    'export node',
    'export bulk nodes',
    'export own nodes',
    'use PHP to import nodes',
  );
}