function tweetbutton_permission in Tweet Button 7.2
Same name and namespace in other branches
- 8 tweetbutton.module \tweetbutton_permission()
- 7 tweetbutton.module \tweetbutton_permission()
Implements hook_permission().
File
- ./
tweetbutton.module, line 286
Code
function tweetbutton_permission() {
return array(
'administer tweetbutton' => array(
'title' => t('Administer Tweet Button'),
),
'access tweetbutton' => array(
'title' => t('Access Tweet Button'),
),
'use tweetbutton field' => array(
'title' => t('Use tweetbutton field to alter tweet text'),
),
);
}