itmo-php-course/engine/app/controller/MainController.php
2025-01-20 21:37:41 +03:00

18 lines
303 B
PHP

<?php
require_once __DIR__ . "/../model/AboutModule.php";
require_once __DIR__ . "/../view/View.php";
class MainController
{
public function actionIndex() {
echo(View::render([], 'index_tpl.php'));
}
public function actionNotFound()
{
echo (View::render([], '404.php'));
}
}