You are here

function shariff_help in Shariff Social Media Buttons 7

Same name and namespace in other branches
  1. 8 shariff.module \shariff_help()

Implements hook_help().

File

./shariff.module, line 10
Integrating Shariff library, providing settings form and block.

Code

function shariff_help($path, $arg) {

  // Generate help text for the settings form.
  if ($path == 'admin/config/services/shariff') {
    $output = '';
    $output .= '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t('The Shariff social media buttons library by heise online enables website users to share their favorite content without compromising their privacy. For more information see <a href="@url">@url</a>.', array(
      '@url' => 'https://github.com/heiseonline/shariff',
    )) . '</p>';
    return $output;
  }
}