Esempio n. 1
0
<?php

namespace Pages;

require __DIR__ . '../../../core/initialize.php';
class Presentation extends \PageHelper
{
    public $arrayTemplate = [];
    public $strTemplate = "Presentation.html5.twig";
    public function run()
    {
        $view = $this->template->render($this->arrayTemplate);
        $this->response->setContent($view);
        $this->response->send();
    }
}
$class = new Presentation();
$class->run();