2
0
mirror of https://github.com/slawkens/myaac.git synced 2025-05-03 12:49:20 +02:00
myaac/system/libs/dwoo/dwooAutoload.php
2017-05-01 20:05:36 +02:00

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');