Adding template engine
Adding error handling Adding basic SMTP class core routing is working
This commit is contained in:
15
system/engine/controller.php
Normal file
15
system/engine/controller.php
Normal 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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user