function redirect_help in Redirect 7
Same name and namespace in other branches
- 8 redirect.module \redirect_help()
- 7.2 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;
}