Dec 27, 2016 14:57
Код в контроллере
class IndexController extends Controller
{
public function indexAction()
{
$this->view->start();
$this->view->test = "BUGAGA";
$this->view->render("index","catalog");
$this->view->finish();
//Пишем шаблон в переменную
$res = $this->view->getContent();
echo $res;
die();
}
}