Files
Grav/system/autoload.php

11 lines
281 B
PHP
Raw Normal View History

2014-08-02 12:11:33 -07:00
<?php
// Initiate Autoload of Grav classes
spl_autoload_register(function ($class) {
if (strpos($class, 'Grav\\Common') === 0 || strpos($class, 'Grav\\Console') === 0) {
$filename = str_replace('\\', '/', LIB_DIR.$class.'.php');
include($filename);
}
});