You are here

function redirect_help in Redirect 7.2

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

Implements hook_help().

File

./redirect.module, line 87

Code

function redirect_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/config/search/redirect/404':
      $output = '<p>' . t('This page lists all paths that have resulted in 404 errors and do not yet have any redirects assigned to them.') . '</p>';
      break;
    case 'admin/reports/page-not-found':
      break;
  }
  return $output;
}