You are here

function _xautoload_autoload in X Autoload 7

Same name and namespace in other branches
  1. 6 xautoload.module \_xautoload_autoload()

Autoload callback for classes and interfaces, registered in hook_boot().

1 string reference to '_xautoload_autoload'
xautoload_boot in ./xautoload.module
Implements hook_boot()

File

./xautoload.module, line 16

Code

function _xautoload_autoload($name) {
  $file = _xautoload_finder()
    ->findFile($name);
  if ($file) {
    require_once $file;
  }
}