You are here

function better_comments_permission in Better Comments 7.2

Same name and namespace in other branches
  1. 7 better_comments.module \better_comments_permission()

Implements hook_permission().

File

./better_comments.module, line 617
Better Comments provides option to configure the comment system.

Code

function better_comments_permission() {
  return array(
    'delete own comment' => array(
      'title' => 'Delete own comments',
      'description' => t('Allows a user to delete his own comment'),
    ),
  );
}