function dlike_permission in Drupal like (Flag counter) 7.2
Same name and namespace in other branches
- 7.3 dlike.module \dlike_permission()
- 7 dlike.module \dlike_permission()
Implementation of hook_perm().
File
- ./
dlike.module, line 27
Code
function dlike_permission() {
$dlike_perm = array();
$dlike_perm['dlike access list'] = array(
'title' => t('Access list of users who flagged a content'),
);
return $dlike_perm;
}