You are here

function service_links_help in Service links 7.2

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

Implements hook_help().

File

./service_links.module, line 45
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;
  }
}