php_engine/app/controller/MainController.php
2025-01-24 12:38:54 +03:00

28 lines
483 B
PHP

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