You are here

function node_export_perm in Node export 6.3

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

Implementation of hook_perm().

File

./node_export.module, line 13
The Node export module.

Code

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