function mb_comment_permission in More Buttons 7
Implements hook_permission().
File
- mb_comment/
mb_comment.module, line 14 - Provides a Cancel button for comments.
Code
function mb_comment_permission() {
return array(
'access mb comment' => array(
'title' => t('Use More Comment Buttons'),
'description' => t('Use the buttons defined by More Buttons Comment.'),
),
);
}