You are here

function customerror_help in Customerror 8

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

Implements hook_help().

File

./customerror.module, line 16
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($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#customerror':
    case 'admin/config/system/customerror':
      $output = t('Enables the creation of custom error pages for 404 and 403 errors.');
      break;
  }
  return $output;
}