GatuZa
Новичок
PHP:
function set_view($fileName, $vars = array())
{
foreach ($vars as $k => $m)
{
$$k = $m;
}
ob_start();
include $fileName;
return ob_get_clean();
}
PHP:
$this->content = $this->set_view('views/templates/editor.tpl.php', array('articles' => $this->articles, 'user' => $this->user));