2014-04-19 20:11:53 +00:00
|
|
|
<?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;
|
|
|
|
}
|
|
|
|
|
2014-04-28 02:05:19 +00:00
|
|
|
public function loadRender($template, $parameters=array())
|
|
|
|
{
|
|
|
|
$this->tpl->loadTemplate($template);
|
|
|
|
return $this->tpl->render($parameters);
|
|
|
|
}
|
|
|
|
|
2014-04-19 20:11:53 +00:00
|
|
|
}
|