You are here

function uptolike_help in Uptolike share buttons 7

Implements hook_help().

File

./uptolike.module, line 15
Main file for Uptolike module.

Code

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

    // Main module help for the Uptolike module.
    case 'admin/help#uptolike':
      $output = '<h2>' . t('Uptolike is a customizable social media buttons') . '</h2>';
      $output .= '<p>' . t("The buttons of social networks can be installed anywhere on the page, set the color, shape, size, and special effects. Don't forget to experiment: the buttons of social networks – one of the conversion elements on your website: achieve the most successful of their location and appearance.") . '</p>';
      return $output;

    // Help preset list in the Uptolike module.
    case 'admin/config/system/uptolike':
      return '<p>' . t('This page contains all the available presets for Uptolike module. You can add new, edit existing, and to export/import the preset.') . '</p>';
  }
}