MVC_Recettes/Controllers/HelloworldController.php
2023-01-12 15:13:21 +01:00

19 lines
413 B
PHP

<?php
final class HelloworldController
{
public function defaultAction()
{
$O_helloworld = new Helloworld();
View::show('helloworld/view', array('helloworld' => $O_helloworld->getMessage()));
}
public function testformAction(Array $A_urlParams = null, Array $A_postParams = null)
{
View::show('helloworld/testform', array('formData' => $A_postParams));
}
}