You are here

function mongodb_module_implements_alter in MongoDB 8

Implements hook_module_implements_alter().

File

./mongodb.module, line 55
MongoDB core module.

Code

function mongodb_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'cron' || $hook == 'requirements') {
    unset($implementations['search']);
  }
}