You are here

function twitter_perm in Twitter 6.5

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

Implements hook_perm().

File

./twitter.module, line 69
Provides API integration with the Twitter microblogging service.

Code

function twitter_perm() {
  return array(
    'add twitter accounts',
    'add authenticated twitter accounts',
    'administer twitter',
    'administer twitter accounts',
  );
}