You are here

function registry_autoload_module_implements_alter in Registry Autoload 7

Implements hook_module_implements_alter().

File

./registry_autoload.module, line 21
Main module for enabling core registry to support namespaced files.

Code

function registry_autoload_module_implements_alter(&$implementations, $hook) {

  // Move our hook implementation to the bottom, so we are called last.
  if ($hook == 'registry_files_alter') {
    $group = $implementations['registry_autoload'];
    unset($implementations['registry_autoload']);
    $implementations['registry_autoload'] = $group;
  }
}