You are here

function fuzzysearch_install in Fuzzy Search 7

Same name and namespace in other branches
  1. 6 fuzzysearch.install \fuzzysearch_install()

Implements hook_install().

File

./fuzzysearch.install, line 11
Install and update hook implementations of the fuzzysearch module.

Code

function fuzzysearch_install() {

  // Create default server and index.
  $file = DRUPAL_ROOT . '/' . drupal_get_path('module', 'fuzzysearch') . "/includes/fuzzysearch.default.inc";
  if (is_file($file)) {
    require_once $file;
  }
}