You are here

function comment_goodness_permission in Comment goodness 7

Implements hook_permission().

File

./comment_goodness.module, line 231
Comment goodness provides newest to oldest comment sorting

Code

function comment_goodness_permission() {
  return array(
    'delete own comments' => array(
      'title' => t('Delete own comments'),
      'description' => t('Allows a user to delete own comments that have no replies (e.g. all if in flat mode).'),
    ),
  );
}