You are here

function socialfeed_help in Social Feed 7

Same name and namespace in other branches
  1. 8 socialfeed.module \socialfeed_help()
  2. 7.2 socialfeed.module \socialfeed_help()

Implements hook_help().

File

./socialfeed.module, line 22
Provide Facebook, Twitter and Instagram.

Code

function socialfeed_help($path, $arg) {
  switch ($path) {
    case 'admin/help#socialfeed':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Social Feed module allows you to fetch feeds directly from Facebook, Twitter & Instagram by simply insatlling it with the dependent <a href="@url">Libraries</a> module.', array(
        '@url' => 'http://www.drupal.org/project/libraries',
      )) . '</p>';
      return $output;
  }
}