You are here

function sharethis_help in ShareThis 5

Same name and namespace in other branches
  1. 8.2 sharethis.module \sharethis_help()
  2. 6.2 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 11
Provides the ShareThis service.

Code

function sharethis_help($path) {
  switch ($path) {
    case 'admin/help#sharethis':
      return '<p>' . t('Provides functionality to interface with the <a href="@sharethis">ShareThis</a> web service.', array(
        '@sharethis' => 'http://sharethis.com',
      ));
    case 'admin/settings/sharethis':
      return '<p>' . t('Below provides the settings for interfacing with the <a href="@sharethis">ShareThis</a> web service.', array(
        '@sharethis' => 'http://sharethis.com',
      ));
  }
}