function comment_permission
7.x comment.module | comment_permission() |
Implements hook_permission().
File
- drupal-7.x/
modules/ comment/ comment.module, line 398 - Enables users to comment on published content.
Code
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'),
),
'skip comment approval' => array(
'title' => t('Skip comment approval'),
),
'edit own comments' => array(
'title' => t('Edit own comments'),
),
);
}