implement Default page

This commit is contained in:
Thomas Rubini 2023-01-16 21:01:24 +01:00
parent b0079b47c3
commit 4c443644b8
No known key found for this signature in database
GPG Key ID: C7D287C8C1CAC373
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<?php
final class DefaultController
{
public function defaultAction(Array $A_urlParams = null, Array $A_postParams = null)
{
View::show("home/view");
}
}

1
Views/home/view.php Normal file
View File

@ -0,0 +1 @@
<h3> Hello ! </h3>