You are here

function sharethis_help in ShareThis 6.2

Same name and namespace in other branches
  1. 8.2 sharethis.module \sharethis_help()
  2. 5 sharethis.module \sharethis_help()
  3. 6 sharethis.module \sharethis_help()
  4. 7.2 sharethis.module \sharethis_help()
  5. 7 sharethis.module \sharethis_help()

Implementation of hook_help().

File

./sharethis.module, line 6

Code

function sharethis_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/service_links/sharethis':
      return '<p>' . t('The following are configuration options for the <a href="@sharethis">ShareThis</a> web service. You can add the ShareThis button to nodes and links in the <a href="@services">services tab</a>.', array(
        '@sharethis' => 'http://sharethis.com',
        '@services' => url('admin/settings/service_links/services'),
      )) . '</p>';
  }
}