11 lines
158 B
PHP
11 lines
158 B
PHP
<?php
|
|
|
|
class HomeController extends BaseController {
|
|
|
|
public function display($f3){
|
|
|
|
$this->renderView('/ui/views/home.html');
|
|
|
|
}
|
|
// ...
|
|
} |