php_engine/app/controller/MainController.php
2025-01-20 21:35:13 +03:00

25 lines
373 B
PHP

<?php
require_once __DIR__ . '/../view/View.php';
class MainController {
//todo: Написать actionIndex отображение главной
// страницы
public function actionIndex(){
echo(View::render( [], 'index_tpl.php' ));
}
public function actionNotFound(){
echo(View::render( [], '404.php' ));
}
}