itmo-php-course/engine/app/controller/MainController.php
2025-01-22 22:23:09 +03:00

19 lines
355 B
PHP

<?php
require_once __DIR__ . "/../model/MusicModel.php";
require_once __DIR__ . "/../view/View.php";
class MainController
{
public function actionIndex() {
$result = MusicModel::getData();
echo(View::render(['box' => $result], 'index_tpl.php'));
}
public function actionNotFound()
{
echo (View::render([], '404.php'));
}
}