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