function shrinktheweb_help in ShrinkTheWeb 8
Same name and namespace in other branches
- 6 shrinktheweb.module \shrinktheweb_help()
- 7 shrinktheweb.module \shrinktheweb_help()
Implementation of hook_help()
File
- ./
shrinktheweb.module, line 14
Code
function shrinktheweb_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.shrinktheweb':
return '<p>' . t('You can find the latest help information for the ShrinkTheWeb module at ') . '<a href="http://drupal.org/node/1067900" target="_blank">http://drupal.org/node/1067900</a></p>';
}
}