You are here

function customerror_help in Customerror 5

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

Implementation of hook_help().

File

./customerror.module, line 43
Enables custom 404 (not found) and 403 (access denied) pages in Drupal with no need for creating real nodes under taxonomies

Code

function customerror_help($section) {
  switch ($section) {
    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;
}