function _xautoload_autoload in X Autoload 6
Same name and namespace in other branches
- 7 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 15
Code
function _xautoload_autoload($name) {
$file = _xautoload_finder()
->findFile($name);
if ($file) {
require_once $file;
}
}