haplousframework/system/engine/controller.php
Nathan Adams a7c962462d Adding template engine
Adding error handling
Adding basic SMTP class
core routing is working
2014-04-19 15:11:53 -05:00

15 lines
271 B
PHP

<?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;
}
}