Merge pull request #5 from ThomasRubini/default_page

This commit is contained in:
Thomas Rubini 2023-01-16 21:02:00 +01:00
commit 8ebfd5c45e
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>