You are here

function node_import_perm in Node import 6

Same name and namespace in other branches
  1. 5 node_import.module \node_import_perm()

Implementation of hook_perm().

File

./node_import.module, line 11
Let users import content from CSV or TSV file.

Code

function node_import_perm() {
  return array(
    'import content',
    'administer imports',
  );
}