Exemplo n.º 1
0
<?php

namespace Pages;

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