You are here

function tweetbutton_permission in Tweet Button 7

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

Implementation of hook_permission()

File

./tweetbutton.module, line 80

Code

function tweetbutton_permission() {
  return array(
    'administer tweetbutton' => array(
      'title' => t('Administer Tweet Button'),
    ),
    'access tweetbutton' => array(
      'title' => t('Access Tweet Button'),
    ),
  );
}