function node_perm in Drupal 4
Same name and namespace in other branches
- 5 modules/node/node.module \node_perm()
- 6 modules/node/node.module \node_perm()
Implementation of hook_perm().
File
- modules/node.module, line 598 
- The core that allows content to be submitted to the site.
Code
function node_perm() {
  return array(
    'administer nodes',
    'access content',
    'view revisions',
    'revert revisions',
  );
}