function fasttoggle_comment_permission in Fasttoggle 7
Implements hook_perm().
File
- module/
fasttoggle_comment/ fasttoggle_comment.module, line 13
Code
function fasttoggle_comment_permission() {
return array(
'toggle commenting' => array(
'title' => t('Toggle commenting'),
),
'toggle commenting on own posts' => array(
'title' => t('Toggle commenting on own posts'),
),
);
}