php-task1/app/Controllers/Controller.php

14 lines
249 B
PHP
Raw Normal View History

2024-05-15 12:00:13 +03:00
<?php
namespace ps\app\Controllers;
use ps\STE\STEView;
class Controller
{
protected function getViewAction($filename)
{
$view = new STEView();
$view->viewPath = 'views/';
$view->render(''.$filename.'.php');
}
}