You are here

function google_appliance_module_implements_alter in Google Search Appliance 7

Implements hook_module_implements_alter().

File

./google_appliance.module, line 117
Google Appliance module enables searching via a dedicated Google Search Appliance hardware device. See README.txt and the help page at admin/help/google_appliance.

Code

function google_appliance_module_implements_alter(&$implementations, $hook) {

  // Make sure we come after search module's implementation.
  if ($hook == 'menu') {
    $group = $implementations['google_appliance'];
    unset($implementations['google_appliance']);
    $implementations['google_appliance'] = $group;
  }
}