You are here

function twitter_perm in Twitter 6.4

Same name and namespace in other branches
  1. 6.5 twitter.module \twitter_perm()
  2. 6.2 twitter.module \twitter_perm()
  3. 6.3 twitter.module \twitter_perm()

Implementation of hook_perm()

File

./twitter.module, line 76
Establishes an interface to communicate with Twitter

Code

function twitter_perm() {
  return array(
    'add twitter accounts',
    'use global twitter account',
    'make twitter accounts global',
    'import own tweets',
  );
}