You are here

function share42_help in Share42 - social sharing buttons 6

Same name and namespace in other branches
  1. 7.2 share42.module \share42_help()
  2. 7 share42.module \share42_help()

Implements hook_help().

File

./share42.module, line 11
Main file for the Share42 module.

Code

function share42_help($path, $arg) {
  switch ($path) {
    case 'admin/help#share42':
      $output = '';
      $output .= '<h3>' . t('Introduction') . '</h3>';
      $output .= '<p>' . t('Integration of social sharing buttons script from http://share42.com.') . '</p>';
      $output .= '<h3>' . t('Installation') . '</h3>';
      $output .= '<p>' . t('Configure required services at <a href="!site">http://share42.com</a> and then download and unpack into "sites/all/libraries/share42" folder.', array(
        '!site' => 'http://share42.com',
      )) . '</p>';
      return $output;
  }
}