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