You are here

better_jump_menu.install in Better Jump Menu 7

Main install module file.

File

better_jump_menu.install
View source
<?php

/**
 * @file
 * Main install module file.
 */

/**
 * Implements hook_uninstall().
 */
function better_jump_menu_uninstall() {

  // Get global variable array
  global $conf;
  foreach (array_keys($conf) as $key) {

    // Find variables that have the module prefix
    if (strpos($key, 'better_jump_menu') === 0) {
      variable_del($key);
    }
  }
}

Functions

Namesort descending Description
better_jump_menu_uninstall Implements hook_uninstall().