You are here

function social_simple_per_node_help in Social simple 8

Same name and namespace in other branches
  1. 2.0.x modules/social_simple_per_node/social_simple_per_node.module \social_simple_per_node_help()

Implements hook_help().

File

modules/social_simple_per_node/social_simple_per_node.module, line 16
Contains social.module..

Code

function social_simple_per_node_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the social module.
    case 'help.page.social_simple_per_node':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provide the ability to enable/disable simple social share links par node.') . '</p>';
      return $output;
    default:
  }
}