comment_perm
Definition
comment_perm()
modules/comment/comment.module, line 213
Description
Implementation of hook_perm().
Code
<?php
function comment_perm() {
return array('access comments', 'post comments', 'administer comments', 'post comments without approval');
}
?> 