node_perm

  1. drupal
    1. 4.7
    2. 5 node.module
    3. 6 node.module
Versions
4.7 – 6 node_perm()

Implementation of hook_perm().

Code

modules/node.module, line 599

<?php
function node_perm() {
  return array('administer nodes', 'access content', 'view revisions', 'revert revisions');
}
?>