You are here

function fb_permissions_permission in Facebook Autopost 7

Implements hook_permission().

File

fb_permissions/fb_permissions.module, line 36
Module implementation file.

Code

function fb_permissions_permission() {
  return array(
    'set facebook permissions' => array(
      'title' => t('Set Facebook permissions'),
      'description' => t('Select the permissions a Facebook App needs to be perform the appropriate actions.'),
    ),
  );
}