You are here

function facebook_wall_help in Facebook Wall 7

Implements hook_help().

File

./facebook_wall.module, line 11
Get the current facebook wall posts of the given user or page.

Code

function facebook_wall_help($path) {
  if ($path == 'admin/help#facebook_wall') {
    $help = '<p>' . t("This module allows you to fetch your facebook wall post from your given FB account username or userid. To get started, you must first connect with your FB account for the purpose of getting a valid access token from FB. Once connected, you can create a content block and show it on site anywhere you want and also it provide a default page (/faceboook_wall) to display the wall post.") . '</p>' . '<ul>' . '<li>' . l(t('Create a new FB App in Facebook'), 'https://developers.facebook.com/apps') . '</li>' . '<li>' . l(t('Get valid Access Token from Facebook'), 'https://developers.facebook.com/tools/explorer') . '</li>' . '<li>' . l(t('View Facebook Wall post'), 'facebook_wall') . '</li>' . '</ul>';
    return $help;
  }
}