comment_permission()Implements hook_permission().
modules/comment/comment.module, line 363
<?php
function comment_permission() {
return array(
'administer comments' => array(
'title' => t('Administer comments and comment settings'),
),
'access comments' => array(
'title' => t('View comments'),
),
'post comments' => array(
'title' => t('Post comments with approval'),
),
'post comments without approval' => array(
'title' => t('Post comments without approval'),
),
'edit own comments' => array(
'title' => t('Edit own comments'),
),
);
}
?>