You are here

function customerroralt_help in Customerror 7

Implements hook_help().

File

customerroralt/customerroralt.module, line 11
Enables custom 403 (access denied) pages for authenticated users in Drupal.

Code

function customerroralt_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#customerroralt':
      $output = t('Enables the creation of an "insufficient permissions" page for authenticated users, as distinct from "please log in" for anonymous users.');
      break;
  }
  return $output;
}