You are here

function xautoload_get_finder in X Autoload 7.2

Same name and namespace in other branches
  1. 7.5 xautoload.early.lib.inc \xautoload_get_finder()
  2. 7.3 xautoload.early.inc \xautoload_get_finder()
  3. 7.4 xautoload.early.lib.inc \xautoload_get_finder()

Get the class finder object. This is the public version of _xautoload_finder().

2 calls to xautoload_get_finder()
xautoload_boot in ./xautoload.module
Implements hook_boot()
xautoload_custom_theme in ./xautoload.module
Implements hook_custom_theme() We only do this because that's the first hook to fire after bootstrap.

File

./xautoload.module, line 232

Code

function xautoload_get_finder() {

  // Get it from the registry.
  return xautoload('classFinder');
}