You are here

function fb_permissions_help in Facebook Autopost 7

Implements hook_help().

File

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

Code

function fb_permissions_help($path, $arg) {
  switch ($path) {
    case 'admin/config/services/fbpermissions':
      return '<p>' . t('This page provides a user interface to select the permissions that you need to perform actions using a Facebook app. Selecting permissions in this screen means that the permission will be stored in a variable that will be used to generate the permissions string. If you want to know more about Facebook permissions please see ') . l(t('this page'), 'https://developers.facebook.com/docs/facebook-login/permissions/v2.0#reference') . '. In order to help maintaining the permission list, please ' . l(t('file an issue here'), 'https://drupal.org/node/add/project-issue/fb_autopost') . ' if you find a deprecated permission or if there is a missing permission.' . '</p>';
  }
}