function customerror_help in Customerror 7
Same name and namespace in other branches
- 8 customerror.module \customerror_help()
- 5 customerror.module \customerror_help()
- 6 customerror.module \customerror_help()
Implements hook_help().
File
- ./
customerror.module, line 47 - Enables custom 404 (not found) and 403 (access denied) pages in Drupal.
Code
function customerror_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#customerror':
$output = t('Enables the creation of custom error pages for 404 and 403 errors.');
break;
}
return $output;
}