You are here

function htaccess_help in Htaccess 7.2

Same name and namespace in other branches
  1. 8.2 htaccess.module \htaccess_help()
  2. 7 htaccess.module \htaccess_help()

Implementation of hook_help()

File

./htaccess.module, line 14
Htaccess is a module which autogenerates a Drupal root htaccess file based on your settings.

Code

function htaccess_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#htaccess":
      $output = '<p>' . t("Auto generate htaccess. ") . '</p>';
      break;
  }
  return $output;
}