You are here

function shrinktheweb_help in ShrinkTheWeb 6

Same name and namespace in other branches
  1. 8 shrinktheweb.module \shrinktheweb_help()
  2. 7 shrinktheweb.module \shrinktheweb_help()

Implementation of hook_help()

File

./shrinktheweb.module, line 5

Code

function shrinktheweb_help($path, $arg) {
  switch ($path) {
    case 'admin/help#shrinktheweb':
      return '<p>' . t('You can find the latest help information for the ShrinkTheWeb module at !url .', array(
        '!url' => '<a href="http://drupal.org/node/1067900" target="_blank">http://drupal.org/node/1067900</a>',
      )) . '</p>';
  }
}