You are here

function fb_autopost_help in Facebook Autopost 7

Implements hook_help().

File

./fb_autopost.module, line 11
Module implementation file

Code

function fb_autopost_help($path, $arg) {
  switch ($path) {

    // Main module help for the block module.
    case 'admin/help#fb_autopost':
      return '<p>' . t('Facebook Autopost allows you to identify a Facebook user, select one of his/her Facebook pages and set autoposting to it. !link.', array(
        '!link' => l(t('Configure Facebook Autopost'), 'admin/config/services/fbautopost'),
      )) . '</p>';
  }
}