You are here

function tweet_feed_permission in Tweet Feed 7.3

Same name and namespace in other branches
  1. 7 tweet_feed.module \tweet_feed_permission()
  2. 7.2 tweet_feed.module \tweet_feed_permission()

Implements hook_permission().

File

./tweet_feed.module, line 171

Code

function tweet_feed_permission() {
  return array(
    'administer tweet feed settings' => array(
      'title' => t('Access Tweet Feed Settings'),
      'description' => t('Allow the changing of OAuth tokens and search queries.'),
    ),
  );
}