You are here

function autoload_get_lookup in Autoload 6.2

Same name and namespace in other branches
  1. 6 autoload.module \autoload_get_lookup()

Backwards-compatible function to clear the autoload registry.

File

./autoload.module, line 92

Code

function autoload_get_lookup($reset = FALSE) {
  if ($reset) {
    autoload_registry_rebuild();
  }
}