You are here

function dlike_permission in Drupal like (Flag counter) 7

Same name and namespace in other branches
  1. 7.3 dlike.module \dlike_permission()
  2. 7.2 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;
}