13 lines
366 B
PHP
13 lines
366 B
PHP
|
|
<?php
|
||
|
|
define('WOD_DIR', __DIR__);
|
||
|
|
|
||
|
|
// setLocale - for converting files with non ascii characters (#406)
|
||
|
|
setlocale(LC_CTYPE, "C.UTF-8");
|
||
|
|
|
||
|
|
function webpexpress_autoloader($class) {
|
||
|
|
if (strpos($class, 'WebPExpress\\') === 0) {
|
||
|
|
require_once WOD_DIR . '/../lib/classes/' . substr($class, 12) . '.php';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
spl_autoload_register('webpexpress_autoloader');
|