Adding template engine

Adding error handling
Adding basic SMTP class
core routing is working
This commit is contained in:
Nathan Adams
2014-04-19 15:11:53 -05:00
parent 703a7d5bbd
commit a7c962462d
28 changed files with 3126 additions and 45 deletions

View File

@@ -0,0 +1,15 @@
<?php
class HF_Controller
{
protected $config;
protected $tpl;
protected $core;
public function __construct($config, $core, $tpl = null)
{
$this->config = $config;
$this->tpl = $tpl;
$this->core = $core;
}
}