haplousframework/index.php

14 lines
244 B
PHP
Raw Normal View History

2016-04-14 22:01:11 -05:00
<?php
spl_autoload_extensions(".php"); // comma-separated list
spl_autoload_register();
2016-04-14 22:01:11 -05:00
foreach (glob("system/vendor/*.php") as $filename)
{
include $filename;
}
require('system/engine/hf_core.php');
2016-04-14 22:01:11 -05:00
$core = new HF_Core();
2014-04-17 22:05:44 -05:00
$core->run();