You are here

function customerror_help in Customerror 6

Same name and namespace in other branches
  1. 8 customerror.module \customerror_help()
  2. 5 customerror.module \customerror_help()
  3. 7 customerror.module \customerror_help()

Implements hook_help().

File

./customerror.module, line 51
Enables custom 404 (not found) and 403 (access denied) pages in Drupal.

Code

function customerror_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/modules#description':
    case 'admin/settings/customerr':
      $output = t('Enables the creation of custom error pages for 404 and 403 errors.');
      break;
  }
  return $output;
}