You are here

function tweetbutton_permission in Tweet Button 8

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

Implementation of hook_permission()

File

./tweetbutton.module, line 52
Adds block with tweet and follow buttons.

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'),
    ),
  );
}