a7c962462d
Adding error handling Adding basic SMTP class core routing is working
15 lines
271 B
PHP
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;
|
|
}
|
|
|
|
} |