function globalredirect_help in Global Redirect 5
Same name and namespace in other branches
- 8 globalredirect.module \globalredirect_help()
- 6 globalredirect.module \globalredirect_help()
- 7 globalredirect.module \globalredirect_help()
Implementation of hook_help().
File
- ./
globalredirect.module, line 22 - The Global Redirect module redirects for all paths which have aliases but are not using the aliases which reduces the risk of duplicate content.
Code
function globalredirect_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('This module will do a 301 redirect for all nodes which have an alias but are not using that alias.');
}
}