You are here

function node_import_perm in Node import 5

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

Implementation of hook_perm().

File

./node_import.module, line 62
This modules provides a wizard at "administer >> content >> import" to import a CSV file with nodes.

Code

function node_import_perm() {
  return array(
    'import nodes',
  );
}