You are here

function service_links_help in Service links 5

Same name and namespace in other branches
  1. 6.2 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 13
Mantainer: Fabio Mucciante aka TheCrow Original Author: Fredrik Jonsson fredrik at combonet dot se A module that adds Digg, del.icio.us, reddit, Technorati etc. links to nodes.

Code

function service_links_help($section) {
  switch ($section) {
    case 'admin/settings/service_links':
      return '<p>' . t('Here you can configure the service links.') . '</p>';
      break;
  }
}