You are here

function responsive_share_buttons_help in Responsive Share Buttons 8

Same name and namespace in other branches
  1. 7 responsive_share_buttons.module \responsive_share_buttons_help()

Implements hook_help().

File

./responsive_share_buttons.module, line 18
The responsive share buttons module.

Code

function responsive_share_buttons_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/config/modules#description':
      $output .= t('Add a responsive social media share block to all pages.');
      break;
    case 'admin/config/user-interface/responsive_share_buttons':
      $output .= t('<p>This is a simple module that adds a social media block to all pages.</p>');
      break;
  }
  return $output;
}