You are here

function htaccess_help in Htaccess 7

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

Display help and module information

File

./htaccess.module, line 11

Code

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