You are here

function service_links_help in Service links 6.2

Same name and namespace in other branches
  1. 5 service_links.module \service_links_help()
  2. 6 service_links.module \service_links_help()
  3. 7.2 service_links.module \service_links_help()

Implementation of hook_help().

File

./service_links.module, line 50
Adds social network links to the content.

Code

function service_links_help($path, $arg) {
  switch ($path) {
    case 'admin/help#service_links':
      return '<p>' . t('Display links to social sharing websites like Digg, del.icio.us, reddit, Technorati etc.') . '</p>';
      break;
    case "admin/modules#description":
      return '<p>' . t('Control which and where service links should be active.') . '</p>';
  }
}