You are here

function export_perm in Node export 6

Same name and namespace in other branches
  1. 5.2 export.module \export_perm()
  2. 5 export.module \export_perm()

Implementation of hook_perm().

File

./export.module, line 19

Code

function export_perm() {
  return array(
    'export node',
    'export bulk nodes',
    'export own nodes',
    'import nodes',
  );
}