function shrinktheweb_help in ShrinkTheWeb 7
Same name and namespace in other branches
- 8 shrinktheweb.module \shrinktheweb_help()
- 6 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>';
}
}