evoadmin-mail/htdocs/lib/autoload.php

11 lines
258 B
PHP

<?php
spl_autoload_register(function ($class) {
if (file_exists("vendor/evolibs/$class.php")) {
include_once("vendor/evolibs/$class.php");
} else {
$class = strtolower($class);
include_once("lib/class.$class.php");
}
});