function tweet_feed_permission in Tweet Feed 7.2
Same name and namespace in other branches
- 7.3 tweet_feed.module \tweet_feed_permission()
- 7 tweet_feed.module \tweet_feed_permission()
Implements hook_permission().
File
- ./
tweet_feed.module, line 140
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.'),
),
);
}