You are here

function globalredirect_help in Global Redirect 7

Same name and namespace in other branches
  1. 8 globalredirect.module \globalredirect_help()
  2. 5 globalredirect.module \globalredirect_help()
  3. 6 globalredirect.module \globalredirect_help()

Implements hook_help().

File

./globalredirect.module, line 12
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($path, $arg) {
  switch ($path) {
    case 'admin/help#globalredirect':
      return t('This module will do a 301 redirect for all nodes which have an alias but are not using that alias.');
  }
}