You are here

function fb_autopost_permission in Facebook Autopost 7

Implements hook_permission().

File

./fb_autopost.module, line 86
Module implementation file

Code

function fb_autopost_permission() {
  return array(
    'administer fb_autopost' => array(
      'title' => t('Administer Facebook Autopost'),
      'description' => t('Allows setting default Facebook pages to publish to.'),
    ),
  );
}