comment_perm

  1. drupal
    1. 4.7
    2. 5 comment.module
    3. 6 comment.module
Versions
4.7 – 6 comment_perm()

Implementation of hook_perm().

Code

modules/comment.module, line 152

<?php
function comment_perm() {
  return array('access comments', 'post comments', 'administer comments', 'post comments without approval');
}
?>