evoadmin-mail/htdocs/index.php

12 lines
208 B
PHP
Raw Normal View History

<?php
spl_autoload_register(function ($class) {
2018-09-25 16:31:18 +02:00
if (file_exists("lib/$class.php")) { require_once("lib/$class.php"); }
});
DefaultController::init();
FormController::init();
PageController::init();
?>