mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
13 lines
263 B
PHP
13 lines
263 B
PHP
<?php
|
|
|
|
include dirname(__FILE__) . DIRECTORY_SEPARATOR . 'Dwoo.php';
|
|
|
|
function dwooAutoload($class)
|
|
{
|
|
if (substr($class, 0, 5) === 'Dwoo_') {
|
|
include DWOO_DIRECTORY . strtr($class, '_', DIRECTORY_SEPARATOR).'.php';
|
|
}
|
|
}
|
|
|
|
spl_autoload_register('dwooAutoload');
|